/* ===================================
   América Seguradora - Landing Page
   Corporate Optimistic Design
   =================================== */

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

:root {
    /* Colors */
    --primary-color: #0A2540;
    --secondary-color: #E63946;
    --accent-light: #E8F0FE;
    --accent-red-light: #FEE8E8;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-gray: #F3F4F6;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    --card-radius: 16px;
    --button-radius: 8px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 9999;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0 auto;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-mobile-simulate {
    display: none;
}

/* ===================================
   Buttons
   =================================== */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-outline-white,
.btn-link {
    padding: 14px 32px;
    border-radius: var(--button-radius);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: #B91C1C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.btn-outline svg {
    flex-shrink: 0;
}

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

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

.btn-link {
    background: none;
    color: var(--secondary-color);
    padding: 8px 0;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    gap: 12px;
}

.btn-primary.large,
.btn-secondary.large,
.btn-outline-white.large {
    padding: 18px 40px;
    font-size: 16px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    margin-top: 72px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            #0A2540 38%,
            #0a2540e9 45%,
            #0a2540e1 90%,
            #0a2540df 100%);
    position: relative;
    overflow: visible;
    padding-bottom: 200px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0;
    position: relative;
    min-height: 90vh;
}

.hero-text {
    position: relative;
    z-index: 3;
    padding: 80px 60px;
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 700;
    line-height: 1.15;
    color: white;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--secondary-color);
    position: relative;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.925);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid #E5E7EB;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 14px;
    color: whitesmoke;
}

.hero-image {
    position: absolute;
    top: 70px;
    left: 390x;
    right: 0;
    bottom: 0;
    width: 900px;
    height: 700px;
    z-index: 1;
}


.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Services Section
   =================================== */
.services {
    height: 60vh;
    padding: 0 0 250px 0;
    background: var(--bg-white);
    margin-top: -180px;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1500px;
    margin: 0 auto;
}

.service-card {
    background: whitesmoke;
    border-radius: 20px;
    bottom: 70px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.service-card.featured {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.15);
}

.service-card.featured:hover {
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.25);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.service-image-top {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #E5E7EB;
    position: relative;
}

.service-image-top img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.service-card:hover .service-image-top img {
    opacity: 1;
    transform: scale(1.1);
}

.service-icon {
    margin: -32px auto 24px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 8px 16px rgba(13, 49, 114, 0.2));
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding: 0 20px;
}

.service-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
    padding: 0 20px;
}

.btn-service {
    background: linear-gradient(135deg, #00bcd4 0%, #03a9f4 100%);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
    background: linear-gradient(135deg, #03a9f4 0%, #00bcd4 100%);
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose {
    padding: 0;
    position: relative;
    overflow: visible;
}

.why-choose-bg {
    background: linear-gradient(135deg, #0d3072da 0%, #0a2540e3 50%, #0a2540d6 100%);
    padding: 100px 0;
    position: relative;
}

.why-choose-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.373) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.why-choose-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title-white {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.section-subtitle-white {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.why-choose-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Image Container with Shape */
.why-choose-image-container {
    position: relative;
}

.image-shape {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: transparent;
    padding: 20px;
}

.image-shape img {
    position: relative;
    width: 112%;
    bottom: -40px;
    right: 30px;
    height: auto;
    object-fit: cover;
    display: block;

}

.stats-overlay {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 3;
}

.stat-box {
    background: white;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 160px;
}

.stat-big {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label-white {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    background: white;
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.benefit-card-1::before {
    background: linear-gradient(90deg, var(--secondary-color), #dc1212);
}

.benefit-card-2::before {
    background: linear-gradient(90deg, var(--secondary-color), #dc1212);
}

.benefit-card-3::before {
    background: linear-gradient(90deg, var(--secondary-color), #dc1212);
}

.benefit-card-4::before {
    background: linear-gradient(90deg, var(--secondary-color), #dc1212);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.benefit-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.benefit-card-1 .benefit-card-icon {
    background: var(--secondary-color);
    color: white;
}

.benefit-card-2 .benefit-card-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.benefit-card-3 .benefit-card-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.benefit-card-4 .benefit-card-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.benefit-card:hover .benefit-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===================================
   Service Modals
   =================================== */
body.modal-open {
    overflow: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    transition: all 0.3s ease;
}

.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.service-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    z-index: 10001;
    display: flex;
    flex-direction: column;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.modal-header {
    text-align: center;
    padding: 40px 40px 30px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 16px;
    color: var(--text-gray);
}

.modal-body {
    padding: 40px;
    padding-top: 0;
}

.modal-section {
    margin-bottom: 32px;
}

.modal-section h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coverage-list li {
    padding: 12px 0 12px 32px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.coverage-list li:last-child {
    border-bottom: none;
}

.coverage-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.coverage-list.optional li::before {
    content: '+';
    color: var(--primary-color);
}

.modal-price {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2540e3 100%);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    margin-top: 32px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: white;
    display: block;
}

.price-period {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.modal-footer {
    padding: 30px 40px;
    background: #f9fafb;
    border-top: 2px solid #f0f0f0;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-modal-primary,
.btn-modal-secondary {
    flex: 1;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-modal-primary {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-modal-primary:hover {
    background: #d32f3e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.btn-modal-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-modal-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Scrollbar personalizado para modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* New Modal Layout with Hero Image */
.modal-hero {
    position: relative;
    top: -30px;
    width: 100%;
    height: 350px;
    background-color: #0A2540;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.modal-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.modal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.5);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    z-index: 2;
}

.modal-hero-title {
    position: absolute;
    bottom: 24px;
    left: 40px;
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: white;
    margin: 0;
    z-index: 3;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.modal-body-new {
    padding: 32px 40px 36px;
    overflow-y: auto;
    flex: 1;
}

.modal-description {
    margin-bottom: 32px;
}

.modal-intro {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.modal-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.modal-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.modal-highlight {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    padding: 18px 20px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
    margin-top: 20px;
}

.modal-highlight strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.modal-cta {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid #E5E7EB;
    margin-top: 8px;
}

.btn-modal-cta {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 16px 44px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-modal-cta:hover {
    background: #d32f3e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.btn-modal-cta svg {
    flex-shrink: 0;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-dark {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle-dark {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.1);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(10, 37, 64, 0.15);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    border-radius: 20px;
}

.faq-cta p {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.btn-faq {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-faq:hover {
    background: #d32f3e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.btn-faq svg {
    flex-shrink: 0;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    height: 100vh;
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(10, 37, 64, 0.12);
    border-color: var(--primary-color);
}

.testimonial-rating {
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    fill: #FFB800;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.author-info h4 {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.author-info p {
    font-size: 13px;
    color: var(--text-light);
}

/* ===================================
   Newsletter Section
   =================================== */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    position: relative;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.newsletter-text h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.newsletter-text p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.newsletter-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
}

.newsletter-benefits svg {
    flex-shrink: 0;
    color: var(--secondary-color);
}

.newsletter-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid #E5E7EB;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"] {
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: var(--button-radius);
    font-size: 15px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 49, 114, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    cursor: pointer;
}

.newsletter-form button {
    width: 100%;
    margin-top: 8px;
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E5E7EB;
}

.newsletter-privacy svg {
    flex-shrink: 0;
    color: var(--text-light);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 150px !important;
    height: 150px !important;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

.footer-description {
    color: var(text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 16px;
}

.contact-info li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info li strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-dark);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* ===================================
   Custom Alert (Newsletter)
   =================================== */
.custom-alert {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.custom-alert.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.alert-content {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 420px;
    border-left: 4px solid #10B981;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.alert-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D1FAE5;
    border-radius: 50%;
}

.alert-text {
    flex: 1;
}

.alert-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.alert-message {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.alert-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-close:hover {
    background: #F3F4F6;
    color: var(--text-dark);
}

/* ===================================
   WhatsApp Floating Button
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--text-dark);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--text-dark);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 75px;
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Smooth scroll offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }

    /* Services Section - mais espaço no mobile */
    .services {
        padding: 0 0 150px 0;
        height: auto;
    }

    /* Services Grid - 1 coluna no mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }

    .service-card {
        max-width: 100%;
        bottom: 0;
    }

    /* Benefits Grid - 1 coluna no mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Stats Overlay - Ajuste de posição */
    .stats-overlay {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        flex-direction: column;
        margin-top: 20px;
    }

    .stat-box {
        width: 100%;
        min-width: auto;
    }

    /* Why Choose Layout - 1 coluna */
    .why-choose-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-shape {
        top: 30px;
    }

    .image-shape img {
        position: relative;
        width: 112%;
        top: 50px;
        bottom: 0px;
        right: 30px;
        height: auto;
        object-fit: cover;
        display: block;

    }

    /* Newsletter Layout - 1 coluna */
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer - 1 coluna */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-image {
        position: absolute;
        top: 135px;
        left: 390x;
        right: 0;
        bottom: 0;
        width: 420px;
        height: 400px;
        z-index: 1;
    }

    /* Hero ajustes */
    .hero-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-text {
        padding: 40px 20px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    /* Testimonials - 1 coluna no mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials {
        height: auto;
        padding: 60px 0;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 10001;
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Esconder botão desktop */
    .nav-content>.btn-secondary {
        display: none;
    }

    /* Menu Mobile */
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        gap: 0;
        z-index: 9999;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 0;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 16px;
        display: block;
        padding: 8px 0;
    }

    .btn-mobile-simulate {
        display: block;
        width: 100%;
        margin-top: 20px;
        padding: 14px 24px;
        background: var(--secondary-color);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-mobile-simulate:hover {
        background: #c51f1f;
        transform: translateY(-2px);
    }
}

/* ===================================
   Large Screens (1440px+)
   =================================== */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    /* Hero Section */
    .hero {
        min-height: 85vh;
    }

    .hero-content {
        max-width: 1400px;
    }

    .hero-text {
        max-width: 650px;
        padding-right: 60px;
    }

    .hero-title {
        font-size: 64px;
        line-height: 1.15;
        margin-bottom: 28px;
    }

    .hero-description {
        font-size: 20px;
        line-height: 1.7;
        margin-bottom: 40px;
    }

    .hero-image {
        width: 1000px;
        height: 750px;
        top: 60px;
    }

    /* Services Section */
    .services {
        padding: 0 0 120px 0;
        margin-top: -200px;
    }

    .services-grid {
        max-width: 1400px;
        gap: 32px;
    }

    .service-card {
        padding: 0;
        min-height: 380px;
    }

    .service-image-top {
        height: 180px;
    }

    .service-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .service-description {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* ===================================
   Extra Large Screens (1920px+)
   =================================== */
@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
    }

    /* Hero Section */
    .hero {
        min-height: 90vh;
    }

    .hero-content {
        max-width: 1800px;
    }

    .hero-text {
        max-width: 750px;
        padding-right: 80px;
    }

    .hero-title {
        font-size: 72px;
        line-height: 1.1;
        margin-bottom: 32px;
    }

    .hero-description {
        font-size: 22px;
        line-height: 1.75;
        margin-bottom: 48px;
    }

    .hero-cta {
        gap: 20px;
    }

    .btn-primary,
    .btn-outline {
        padding: 18px 40px;
        font-size: 18px;
    }

    .hero-image {
        width: 1200px;
        height: 850px;
        top: 50px;
        left: 500px;
    }

    /* Services Section */
    .services {
        padding: 0 0 140px 0;
        margin-top: -220px;
    }

    .services-grid {
        max-width: 1800px;
        gap: 40px;
    }

    .service-card {
        min-height: 420px;
        border-radius: 24px;
    }

    .service-image-top {
        height: 200px;
    }

    .service-image-top img {
        width: 90px;
        height: 90px;
    }

    .service-title {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .service-description {
        font-size: 17px;
        line-height: 1.65;
        padding: 0 24px;
    }

    .btn-service {
        padding: 14px 32px;
        font-size: 16px;
    }
}

/* ===================================
   Ultra Wide Screens (2560px+)
   =================================== */
@media (min-width: 2560px) {
    .container {
        max-width: 2400px;
    }

    /* Hero Section */
    .hero {
        min-height: 95vh;
    }

    .hero-content {
        max-width: 2400px;
    }

    .hero-text {
        max-width: 900px;
        padding-right: 100px;
    }

    .hero-title {
        font-size: 84px;
        line-height: 1.1;
        margin-bottom: 36px;
    }

    .hero-description {
        font-size: 24px;
        line-height: 1.8;
        margin-bottom: 56px;
    }

    .btn-primary,
    .btn-outline {
        padding: 20px 48px;
        font-size: 20px;
    }

    .hero-image {
        width: 1400px;
        height: 1000px;
        top: 40px;
        left: 600px;
    }

    /* Services Section */
    .services {
        padding: 0 0 160px 0;
        margin-top: -240px;
    }

    .services-grid {
        max-width: 2400px;
        gap: 48px;
    }

    .service-card {
        min-height: 480px;
        border-radius: 28px;
    }

    .service-image-top {
        height: 220px;
    }

    .service-image-top img {
        width: 100px;
        height: 100px;
    }

    .service-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .service-description {
        font-size: 18px;
        line-height: 1.7;
        padding: 0 28px;
    }

    .btn-service {
        padding: 16px 36px;
        font-size: 17px;
    }
}