/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

:root {
    --primary-color: #32cd32;
    --secondary-color: #7fff00;
    --accent-color: #00ff00;
    --dark-green: #228b22;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    word-wrap: break-word;
    hyphens: auto;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    word-wrap: break-word;
}

/* Header/Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo-subtitle {
    font-size: 1rem;
    color: var(--text-light);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: none;
    -webkit-tap-highlight-color: transparent;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

/* Submenu styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a::after {
    content: " ▶";
    float: right;
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu li {
    list-style: none;
}

.submenu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.submenu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

/* Current page indicator */
.current-page a {
    background: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.current-page a::before {
    content: "▸";
    position: absolute;
    left: 0.5rem;
}

.nav-cta .btn-call {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-cta .btn-call .phone-number {
    font-size: 1rem;
    font-weight: 700;
}

.nav-cta .btn-call .phone-label {
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 0.25rem;
}

.nav-cta .btn-call:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    color: white;
    overflow: hidden;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-title .highlight {
    color: var(--accent-color);
}

.hero-title .highlight-white {
    color: white;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid white;
    padding-bottom: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 700;
    animation: fadeInUp 0.8s ease 0.2s both;
    word-wrap: break-word;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
}

/* Hero Alert */
.hero-alert {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    margin: 2rem auto;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    animation: fadeInUp 0.8s ease 0.3s both;
    max-width: 90%;
    word-wrap: break-word;
}

.alert-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.alert-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    word-wrap: break-word;
}

.alert-phone {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    word-wrap: break-word;
}

.alert-phone:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    word-wrap: break-word;
}

.feature-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    word-wrap: break-word;
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* About Section Centralizada */
.about-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text-centered {
    width: 100%;
}

.about-text-centered h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.about-text-centered p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-text-centered .stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-text-centered .stat-item {
    text-align: center;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 0;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.image-placeholder {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-color));
    border-radius: 1rem;
    padding: 4rem;
    text-align: center;
    color: white;
}

.image-placeholder span {
    font-size: 4rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* How It Works Section */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    background: var(--bg-white);
    padding: 80px 0;
}

.pricing-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.pricing-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    width: 100%;
}

.pricing-badge-large {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 2rem;
}

.pricing-main-price {
    margin-bottom: 2rem;
}

.main-price-currency {
    font-size: 2rem;
    vertical-align: top;
    margin-right: 0.5rem;
}

.main-price-amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.main-price-period {
    font-size: 1.5rem;
    opacity: 0.9;
}

.pricing-highlight-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-benefits {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
    text-align: center;
}

.pricing-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-cta {
    text-align: center;
}

.pricing-guarantee {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 3rem;
}

.pricing-guarantee h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Simulator Section */
.simulator {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f7f4 100%);
    padding: 80px 0;
}

.simulator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.simulator-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(50, 205, 50, 0.1);
}

.simulator-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Plan Selector Styles */
.plan-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.plan-option {
    cursor: pointer;
    position: relative;
}

.plan-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.plan-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
    -webkit-tap-highlight-color: transparent;
}

.plan-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.plan-option input[type="radio"]:checked + .plan-card {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.05) 0%, rgba(127, 255, 0, 0.05) 100%);
    box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.2);
}

.plan-card.bronze {
    border-color: #cd7f32;
}

.plan-card.prata {
    border-color: #c0c0c0;
}

.plan-card.ouro {
    border-color: #ffd700;
}

.plan-option input[type="radio"]:checked + .plan-card.bronze {
    border-color: #cd7f32;
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1) 0%, rgba(205, 127, 50, 0.05) 100%);
}

.plan-option input[type="radio"]:checked + .plan-card.prata {
    border-color: #c0c0c0;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(192, 192, 192, 0.05) 100%);
}

.plan-option input[type="radio"]:checked + .plan-card.ouro {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
}

.simulator-form select {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.simulator-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.1);
}

.simulator-result {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary-color);
}

.simulator-result h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.result-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.result-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.result-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

.result-card.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: scale(1.02);
}

.result-card.highlight .result-label {
    color: var(--primary-color);
    font-weight: 600;
}

.result-card.success {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
    transform: scale(1.02);
}

.result-card.success .result-value {
    color: white;
    font-weight: 700;
}

.result-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.result-detail {
    font-size: 0.85rem;
    opacity: 0.8;
}

.result-detail.percentage {
    font-weight: 600;
    font-size: 1rem;
}

.annual-savings {
    background: rgba(50, 205, 50, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.annual-savings p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.simulator-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.simulator-disclaimer {
    text-align: center;
    margin-top: 2rem;
}

.simulator-disclaimer small {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.4;
}

/* Competitive Comparison Section */
.competitive-comparison {
    background: var(--bg-light);
    padding: 80px 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border-collapse: collapse;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.comparison-table .cm-column {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
}

.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:nth-child(even) {
    background: var(--bg-light);
}

.comparison-table tr:hover {
    background: rgba(50, 205, 50, 0.1);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.cm-column {
    background: rgba(50, 205, 50, 0.1) !important;
    color: var(--primary-color) !important;
    font-weight: 600;
}

.competitive-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.competitive-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.competitive-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    display: grid;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    color: white;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float span {
    font-size: 2rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Economic Simulator */
.economy-simulator {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    margin: 2rem 0;
}

.economy-simulator h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.simulator-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group select,
.form-group input {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.1);
}

.plan-selector {
    grid-column: 1 / -1;
}

.plan-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.plan-option {
    position: relative;
}

.plan-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.plan-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    text-align: center;
}

.plan-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.15);
}

.plan-option input[type="radio"]:checked + .plan-card {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.1) 0%, rgba(50, 205, 50, 0.05) 100%);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.2);
}

.plan-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.simulator-submit {
    grid-column: 1 / -1;
    justify-self: center;
}

.btn-simulate {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-simulate:hover {
    background: #28a428;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(50, 205, 50, 0.3);
}

#simulatorResult {
    display: none;
    margin-top: 2rem;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.result-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 2px solid var(--border-color);
    opacity: 0;
    transform: translateY(20px);
}

.result-card h4 {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.result-card.highlight {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.1) 0%, rgba(50, 205, 50, 0.05) 100%);
}

.result-card.highlight .result-value {
    font-size: 1.75rem;
}

.btn-reset {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
}

.btn-reset:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.annual-savings {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
    border: 2px solid var(--border-color);
}

.savings-highlight {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.savings-highlight h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.savings-amount {
    font-size: 1.1rem;
    color: var(--text-color);
}

.savings-amount span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.roi-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.roi-info p {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
    margin: 0;
    font-size: 0.95rem;
}

.roi-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Resources/Blog Section (SEO Advantage) */
.resources {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.resource-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.resource-card h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.resource-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.resource-tags span {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.resources-cta {
    text-align: center;
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
}

.cta-subtitle {
    color: var(--text-color);
    margin-top: 0.75rem;
    font-style: italic;
}

/* Service Pages Specific Styles */
.breadcrumb {
    background: var(--bg-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-nav {
    font-size: 0.9rem;
    color: var(--text-color);
}

.breadcrumb-nav a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-nav span {
    margin: 0 0.5rem;
    color: var(--text-light);
}

.hero-service {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
}

.hero-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
}

.hero-service .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-service h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.badge {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hikvision-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-preview {
    background: #2c3e50;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
}

.device-screen {
    background: #1a1a1a;
    color: #00ff00;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    position: relative;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00ff00;
    animation: scan 2s infinite;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

.device-brand {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.technology-section {
    padding: 4rem 0;
    background: white;
}

.tech-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--bg-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-color);
    font-weight: 500;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-card.highlight {
    background: linear-gradient(135deg, rgba(50,205,50,0.05) 0%, rgba(50,205,50,0.1) 100%);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    padding: 0.25rem 0;
    color: var(--text-color);
}

.products-showcase {
    background: var(--bg-light);
    padding: 4rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.product-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(50,205,50,0.05) 0%, rgba(50,205,50,0.1) 100%);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-image {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.terminal-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.terminal-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.product-model {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: inline-block;
    border: 2px solid var(--primary-color);
    margin-top: 0.5rem;
}

/* SEO Text - Hidden from users, visible to search engines */
.seo-text {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    font-size: 0;
    opacity: 0;
    pointer-events: none;
}

.product-specs {
    margin: 1.5rem 0;
}

.spec {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.spec-label {
    font-weight: 500;
    color: var(--text-color);
}

.spec-value {
    font-weight: 600;
    color: var(--text-dark);
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1rem 0;
    text-align: center;
}

.integration-section {
    padding: 4rem 0;
    background: white;
}

.integration-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.flow-step {
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.integration-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quote-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.quote-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.hikvision-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group.urgency {
    background: rgba(255,0,0,0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,0,0,0.2);
}

.form-group.urgency label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    position: relative;
}

input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: var(--primary-color);
    font-weight: bold;
}

.btn-full {
    width: 100%;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 1rem;
    line-height: 1.5;
}

/* Coverage Section */
.coverage-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.coverage-city {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.coverage-city.primary {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(50,205,50,0.05) 0%, rgba(50,205,50,0.1) 100%);
}

.coverage-city:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.city-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coverage-city h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.coverage-city p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.coverage-city ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.coverage-city li {
    padding: 0.3rem 0;
    color: var(--text-dark);
}

.coverage-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
}

.coverage-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.coverage-benefits .benefit-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.coverage-benefits h4 {
    margin: 0;
    color: var(--text-dark);
}

.coverage-benefits p {
    margin: 0.2rem 0 0 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ Local SEO Section */
.faq-local {
    background: var(--bg-light);
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-local .faq-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-local .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.faq-local .faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-local .faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.faq-local .faq-item strong {
    color: var(--primary-color);
}

/* Resource Cards Button */
.resource-card {
    position: relative;
    padding-bottom: 4rem;
}

.resource-card .btn-small {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.resource-card .btn-small:hover {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.quote-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.info-card.highlight {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(50,205,50,0.05) 0%, rgba(50,205,50,0.1) 100%);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    border: 2px solid var(--border-color);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.contact-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-btn.whatsapp {
    border-color: #25d366;
}

.contact-btn.phone {
    border-color: #007bff;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-text {
    font-size: 0.9rem;
    line-height: 1.3;
}

/* HikVision Authority Badge */
.hikvision-authority {
    text-align: center;
    margin: 2rem 0;
}

.authority-badge {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    display: inline-block;
    max-width: 600px;
}

.authority-badge h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.tech-stats .stat-item.highlight {
    background: linear-gradient(135deg, rgba(50,205,50,0.1) 0%, rgba(50,205,50,0.2) 100%);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

/* Series Overview */
.series-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.series-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.series-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.series-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.series-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.series-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.series-badge.pro {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
}

.series-badge.ultra {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
}

.series-badge.value {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
}

.series-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.series-card li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Enhanced Product Cards */
.product-series {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.highlight-tag {
    background: linear-gradient(135deg, rgba(50,205,50,0.1), rgba(50,205,50,0.2));
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(50,205,50,0.3);
}

/* Control Center Section */
.control-center-section {
    background: var(--bg-light);
    padding: 3rem 0;
    margin-top: 3rem;
    border-radius: 1rem;
}

.controller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.controller-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.controller-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.controller-image {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.controller-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.controller-card p {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.controller-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.controller-card li {
    padding: 0.25rem 0;
    font-size: 0.85rem;
    color: var(--text-color);
}

.controller-price {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Regional Coverage Section */
.regional-coverage {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.coverage-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.coverage-stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.stat-data {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.city-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.city-card.primary {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(50,205,50,0.05) 0%, rgba(50,205,50,0.1) 100%);
}

.city-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.city-card p {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.city-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.city-card li {
    padding: 0.25rem 0;
    font-size: 0.85rem;
    color: var(--text-color);
}

.city-highlight {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.regional-benefits {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
}

.regional-benefits h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design - CORREÇÕES PRINCIPAIS */

/* MOBILE FIRST APPROACH - Melhorias gerais */
@media (max-width: 968px) {
    /* Container padding adjustment */
    .container {
        padding: 0 15px;
    }
    
    /* Navigation Mobile - MELHORADO */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero Section Mobile - CORRIGIDO */
    .hero {
        padding: 90px 0 50px;
        overflow: hidden;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .feature-item {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    /* Hero Alert - CORRIGIDO */
    .hero-alert {
        margin: 1.5rem auto;
        padding: 1rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        width: 95%;
        max-width: none;
    }
    
    .alert-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .alert-phone {
        font-size: 1.3rem;
        word-break: break-all;
    }

    /* Grid layouts mobile - CORRIGIDO */
    .about-content,
    .contact-content,
    .hero-content,
    .quote-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Typography mobile - MELHORADO */
    h1 { 
        font-size: 1.75rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    h2 { 
        font-size: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    h3 { 
        font-size: 1.25rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    /* Services grid */
    .services-grid,
    .benefits-grid,
    .testimonials-grid,
    .faq-grid,
    .products-grid,
    .tech-features,
    .cities-grid,
    .series-overview,
    .controller-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card,
    .benefit-card,
    .testimonial-card,
    .product-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Steps timeline */
    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    /* Simulator Mobile - CORRIGIDO */
    .simulator-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .simulator-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .plan-selector {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .plan-card {
        padding: 1.25rem;
    }
    
    .result-cards {
        gap: 0.75rem;
    }
    
    .result-card {
        padding: 1.25rem;
    }
    
    .result-value {
        font-size: 1.5rem;
    }
    
    /* Pricing Section Mobile - CORRIGIDO */
    .pricing-highlight {
        padding: 2.5rem 1.5rem;
        margin: 0 15px;
    }
    
    .main-price-amount {
        font-size: 3rem;
    }
    
    .pricing-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    /* Comparison Table Mobile - MELHORADO */
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px;
    }
    
    .comparison-table {
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    /* Contact Form Mobile */
    .contact-form {
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* HikVision Page Mobile - CORRIGIDO */
    .hero-service {
        padding: 3rem 0;
    }
    
    .hero-service h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .tech-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .coverage-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .coverage-stat {
        padding: 1.25rem;
    }
    
    .integration-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .integration-flow {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    /* Device preview mobile */
    .device-preview {
        padding: 1.5rem;
    }
    
    .device-screen {
        padding: 1rem;
        font-size: 0.8rem;
    }
}

/* TELAS MUITO PEQUENAS - < 640px */
@media (max-width: 640px) {
    /* Container extra pequeno */
    .container {
        padding: 0 10px;
    }
    
    /* Typography extra pequeno */
    h1 { 
        font-size: 1.5rem;
        line-height: 1.3;
    }
    h2 { 
        font-size: 1.3rem;
        line-height: 1.3;
    }
    h3 { 
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    /* Hero extra pequeno - TOTALMENTE CORRIGIDO */
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    
    .hero-features {
        gap: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .feature-item .icon {
        font-size: 1.2rem;
    }
    
    /* Hero Alert extra pequeno - CORRIGIDO */
    .hero-alert {
        padding: 0.75rem 1rem;
        margin: 1rem auto;
        width: 98%;
        gap: 0.5rem;
    }
    
    .alert-text {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .alert-phone {
        font-size: 1.1rem;
        word-break: break-all;
        line-height: 1.2;
    }

    /* Stats mobile único */
    .stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Sections padding menor */
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    /* Cards padding menor */
    .service-card,
    .benefit-card,
    .testimonial-card,
    .product-card,
    .feature-card {
        padding: 1.25rem;
    }

    /* Footer coluna única */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Simulator extra pequeno - CORRIGIDO */
    .simulator-form {
        padding: 1.25rem;
    }
    
    .plan-card {
        padding: 1rem;
    }
    
    .plan-name {
        font-size: 0.95rem;
    }
    
    .plan-price {
        font-size: 1.2rem;
    }
    
    .result-value {
        font-size: 1.25rem;
    }
    
    /* Pricing extra pequeno */
    .pricing-highlight {
        padding: 2rem 1.25rem;
        margin: 0 10px;
    }
    
    .main-price-amount {
        font-size: 2.5rem;
    }
    
    /* Tech stats coluna única */
    .tech-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    /* WhatsApp button menor */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 15px;
    }
    
    .whatsapp-float span {
        font-size: 1.5rem;
    }
    
    /* Form inputs mobile - CORRIGIDO */
    .contact-form input,
    .contact-form select,
    .contact-form textarea,
    .simulator-form select,
    .simulator-form input {
        font-size: 16px; /* Evita zoom no iOS */
        padding: 0.75rem;
    }
    
    /* Button melhorias */
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Service features list mobile */
    .service-features {
        font-size: 0.9rem;
    }
    
    /* Product specs mobile */
    .spec {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    /* Device preview menor */
    .device-preview {
        padding: 1rem;
    }
    
    .device-screen {
        padding: 0.75rem;
        font-size: 0.75rem;
    }
    
    /* Overflow protection adicional */
    .hero-title,
    .hero-subtitle,
    .alert-text,
    .alert-phone {
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }
}

/* TELAS MUITO PEQUENAS - < 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    .hero {
        padding: 70px 0 30px;
    }
    
    .hero-title {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-alert {
        width: 100%;
        margin: 0.75rem auto;
        padding: 0.6rem 0.8rem;
    }
    
    .alert-text {
        font-size: 0.8rem;
    }
    
    .alert-phone {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        max-width: 220px;
    }
    
    .feature-item {
        font-size: 0.75rem;
    }
    
    /* Seções ainda menores */
    section {
        padding: 40px 0;
    }
    
    /* Cards ainda menores */
    .service-card,
    .benefit-card,
    .testimonial-card,
    .product-card {
        padding: 1rem;
    }
    
    /* Simulator mínimo */
    .simulator-form {
        padding: 1rem;
    }
    
    .plan-card {
        padding: 0.75rem;
    }
    
    /* Pricing mínimo */
    .pricing-highlight {
        padding: 1.5rem 1rem;
        margin: 0 8px;
    }
    
    .main-price-amount {
        font-size: 2rem;
    }
}

/* MELHORIAS ADICIONAIS DE OVERFLOW */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

body {
    overflow-x: hidden;
}

.hero-title,
.hero-subtitle,
.alert-text,
.alert-phone,
h1, h2, h3, h4, h5, h6,
p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}