/* ==========================================
   TAXI PLUS AEROPUERTO — STYLES
   Paleta: Verde profundo #06382B, Verde principal #07533D,
           Esmeralda #19A974, Verde claro #DFF7EC,
           Grafito #17201D, Dorado cálido #C89B3C, Fondo #F7FAF8
========================================== */

:root {
    --primary-dark: #06382B;
    --primary: #07533D;
    --accent: #19A974;
    --accent-light: #DFF7EC;
    --text-dark: #17201D;
    --text-muted: #55605C;
    --gold: #C89B3C;
    --white: #FFFFFF;
    --bg-light: #F7FAF8;
    --border-color: #D2DDD8;
    --shadow: 0 10px 25px rgba(6, 56, 43, 0.08);
    --shadow-sm: 0 4px 12px rgba(6, 56, 43, 0.05);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

[hidden] {
    display: none !important;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif, system-ui, -apple-system;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

main:focus {
    outline: none;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--primary-dark);
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 6px;
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

ul {
    list-style: none;
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #148f61;
    border-color: #148f61;
    transform: translateY(-1px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--primary-dark);
    border-color: var(--border-color);
}

.btn-outline-dark:hover {
    background-color: var(--accent-light);
    border-color: var(--accent);
}

.hero .btn-hero-call {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.75);
}

.hero .btn-hero-call:hover {
    color: var(--primary-dark);
    background-color: var(--white);
    border-color: var(--white);
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
}

.btn:disabled:hover {
    transform: none;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* HEADER */
.site-header {
    background-color: var(--primary-dark);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white);
}

.logo-text span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta-mobile {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.badge-pill {
    display: inline-block;
    background-color: rgba(25, 169, 116, 0.2);
    color: var(--accent);
    border: 1px solid rgba(25, 169, 116, 0.4);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trust-signals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.5rem;
}

.trust-signals li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.trust-signals svg {
    color: var(--accent);
    flex-shrink: 0;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.hero-badge-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(6, 56, 43, 0.9);
    backdrop-filter: blur(8px);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(25, 169, 116, 0.3);
}

.badge-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
}

.badge-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* SERVICES SECTION */
.services-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.service-card:focus-visible {
    transform: translateY(-4px);
    background-color: var(--white);
    border-color: rgba(25, 169, 116, 0.7);
    box-shadow: 0 12px 26px rgba(23, 32, 29, 0.1);
    outline: none;
}

@media (hover: hover) and (pointer: fine) {
    .service-card:hover {
        transform: translateY(-4px);
        background-color: var(--white);
        border-color: rgba(25, 169, 116, 0.7);
        box-shadow: 0 12px 26px rgba(23, 32, 29, 0.1);
    }
}

@media (hover: none), (pointer: coarse) {
    .service-card:active {
        transform: scale(0.99);
        border-color: rgba(25, 169, 116, 0.55);
        box-shadow: 0 7px 16px rgba(23, 32, 29, 0.08);
    }
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--primary);
    background-color: var(--accent-light);
    border: 1px solid rgba(25, 169, 116, 0.18);
    border-radius: 10px;
    margin-bottom: 1.25rem;
    transition: transform 0.28s ease, background-color 0.28s ease;
}

.service-icon svg,
.benefit-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card:focus-visible .service-icon {
    transform: translateY(-1px);
    background-color: #d5f2e5;
}

@media (hover: hover) and (pointer: fine) {
    .service-card:hover .service-icon {
        transform: translateY(-1px);
        background-color: #d5f2e5;
    }
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* BENEFITS SECTION */
.benefits-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.benefit-item {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--accent);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item::after {
    content: '';
    position: absolute;
    z-index: 0;
    right: -1rem;
    bottom: -1.25rem;
    width: 9rem;
    height: 9rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.052;
    pointer-events: none;
}

.benefit-item > * {
    position: relative;
    z-index: 1;
}

.benefit-item:nth-child(1)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355605c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.75 19.25 5.5v5.86c0 4.54-2.92 8.01-7.25 9.89-4.33-1.88-7.25-5.35-7.25-9.89V5.5L12 2.75Z'/%3E%3Cpath d='m8.75 12 2.1 2.1 4.55-4.55'/%3E%3C/svg%3E");
}

.benefit-item:nth-child(2)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355605c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8.75'/%3E%3Cpath d='M12 7.25V12l3.1 2.05M5.8 3.9 3.9 5.8M18.2 3.9l1.9 1.9'/%3E%3C/svg%3E");
}

.benefit-item:nth-child(3)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355605c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='1.5'/%3E%3Cpath d='M12 7.5a4.5 4.5 0 0 1 4.5 4.5M12 4a8 8 0 0 1 8 8M7.5 12A4.5 4.5 0 0 1 12 7.5M4 12a8 8 0 0 1 8-8M12 13.5V21'/%3E%3C/svg%3E");
}

.benefit-item:nth-child(4)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355605c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5.25 10.75 1.4-4.1A2 2 0 0 1 8.55 5.3h6.9a2 2 0 0 1 1.9 1.35l1.4 4.1M4 10.75h16a1 1 0 0 1 1 1v5.5H3v-5.5a1 1 0 0 1 1-1ZM5.5 17.25v2M18.5 17.25v2'/%3E%3Ccircle cx='7' cy='14' r='.75'/%3E%3Ccircle cx='17' cy='14' r='.75'/%3E%3C/svg%3E");
}

.benefit-item:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(25, 169, 116, 0.7);
    box-shadow: 0 14px 30px rgba(6, 56, 43, 0.12);
    outline: none;
}

@media (hover: hover) and (pointer: fine) {
    .benefit-item:hover {
        transform: translateY(-4px);
        border-color: rgba(25, 169, 116, 0.7);
        box-shadow: 0 14px 30px rgba(6, 56, 43, 0.12);
    }
}

@media (hover: none), (pointer: coarse) {
    .benefit-item:active {
        transform: scale(0.99);
        border-color: rgba(25, 169, 116, 0.55);
        box-shadow: 0 8px 18px rgba(6, 56, 43, 0.09);
    }
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--primary);
    background-color: var(--accent-light);
    border: 1px solid rgba(25, 169, 116, 0.18);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* STEPS SECTION */
.steps-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.step-card:focus-visible {
    transform: translateY(-4px);
    background-color: var(--white);
    border-color: rgba(25, 169, 116, 0.65);
    box-shadow: var(--shadow-sm);
    outline: none;
}

@media (hover: hover) and (pointer: fine) {
    .step-card:hover {
        transform: translateY(-4px);
        background-color: var(--white);
        border-color: rgba(25, 169, 116, 0.65);
        box-shadow: var(--shadow-sm);
    }
}

@media (hover: none), (pointer: coarse) {
    .step-card:active {
        transform: translateY(-1px) scale(0.99);
        border-color: rgba(25, 169, 116, 0.55);
        box-shadow: 0 7px 16px rgba(23, 32, 29, 0.08);
    }
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 1px rgba(7, 83, 61, 0.22), 0 6px 14px rgba(6, 56, 43, 0.15);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.step-card:focus-visible .step-number {
    transform: scale(1.06);
    box-shadow: 0 0 0 4px rgba(25, 169, 116, 0.12), 0 8px 18px rgba(6, 56, 43, 0.18);
}

@media (hover: hover) and (pointer: fine) {
    .step-card:hover .step-number {
        transform: scale(1.06);
        box-shadow: 0 0 0 4px rgba(25, 169, 116, 0.12), 0 8px 18px rgba(6, 56, 43, 0.18);
    }
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* COVERAGE SECTION */
.coverage-section {
    padding: 4rem 0 6rem;
    background-color: var(--bg-light);
}

.coverage-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    border-radius: 16px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.coverage-box h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.coverage-box p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.coverage-carousel {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.coverage-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}

.coverage-tags::-webkit-scrollbar {
    display: none;
}

.tag {
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.coverage-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.coverage-arrow:hover,
.coverage-arrow:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.55);
    transform: scale(1.05);
    outline: 2px solid rgba(255, 255, 255, 0.75);
    outline-offset: 2px;
}

.coverage-arrow:disabled {
    opacity: 0.3;
    cursor: default;
    transform: none;
}

.coverage-arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.coverage-note {
    font-size: 0.9rem;
    color: var(--accent-light);
    font-style: italic;
}

/* QUOTE SECTION / FORM */
.quote-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.quote-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3.5rem;
    box-shadow: var(--shadow);
}

.quote-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.quote-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.quote-header p {
    font-size: 1rem;
    color: var(--text-muted);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-help {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.4;
}

.form-required-note {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.form-help.is-error {
    color: #A12D2D;
    font-weight: 600;
}

.form-group input.is-invalid {
    border-color: #A12D2D;
}

.form-group input.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(161, 45, 45, 0.14);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background-color: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(25, 169, 116, 0.15);
}

.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
    border-color: #A12D2D;
}

.trip-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.sub-trip-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sub-trip-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.flight-conditional-box {
    background-color: var(--accent-light);
    border: 1px solid rgba(25, 169, 116, 0.3);
    padding: 1.25rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.conditional-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.form-submit-wrapper {
    margin-top: 1rem;
    text-align: center;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* FAQ SECTION */
.faq-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(25, 169, 116, 0.55);
    box-shadow: 0 6px 18px rgba(6, 56, 43, 0.07);
}

.faq-item[open] {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
    color: var(--accent);
    background-color: rgba(223, 247, 236, 0.45);
    outline: none;
}

.faq-item summary:focus-visible {
    box-shadow: inset 0 0 0 2px var(--accent);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent);
    flex: 0 0 auto;
    line-height: 1;
    transition: transform 0.35s ease, color 0.25s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-content {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.42s ease, padding 0.42s ease, opacity 0.28s ease, transform 0.35s ease;
}

.faq-item[open] .faq-content {
    max-height: 18rem;
    padding: 0 1.5rem 1.25rem;
    opacity: 1;
    transform: translateY(0);
}

/* FOOTER */
.site-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--accent);
    transition: var(--transition);
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-exp {
    font-size: 0.85rem;
    color: var(--accent-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.footer-subtitle {
    margin-top: 1.5rem;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .trust-signals {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
    .hero-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--primary-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .main-nav.active {
        display: block;
    }
    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    .nav-cta-mobile {
        display: inline-block;
    }
    .mobile-menu-toggle {
        display: flex;
        flex: 0 0 28px;
    }
    .mobile-menu-toggle.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .header-container {
        padding-right: 0.75rem;
        padding-left: 0.75rem;
    }
    .brand {
        min-width: 0;
    }
    .logo-text {
        display: flex;
        flex-direction: column;
        font-size: 1rem;
        line-height: 1.05;
        letter-spacing: -0.35px;
    }
    .header-actions {
        gap: 0.4rem;
    }
    .header-actions .btn {
        min-height: 40px;
        padding: 0.55rem 0.75rem;
    }
    .header-phone {
        width: 40px;
        padding: 0 !important;
    }
    .header-phone span {
        display: none;
    }
    .hero h1 {
        font-size: 2.1rem;
    }
    .trust-signals {
        grid-template-columns: 1fr;
        max-width: 430px;
        text-align: left;
    }
    .trust-signals li {
        align-items: flex-start;
    }
    .trust-signals svg {
        margin-top: 0.2rem;
    }
    .hero-image-wrapper {
        overflow: visible;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }
    .hero-img {
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        box-shadow: var(--shadow);
    }
    .hero-badge-card {
        position: static;
        margin-top: 0.75rem;
        text-align: left;
        background: rgba(6, 56, 43, 0.95);
    }
    .services-grid,
    .benefits-grid,
    .steps-grid,
    .form-row,
    .footer-container {
        grid-template-columns: 1fr;
    }
    .quote-wrapper {
        padding: 1.5rem;
    }
    .coverage-box {
        padding: 2.5rem 1.5rem;
    }

    .coverage-carousel {
        display: block;
    }

    .coverage-arrow {
        display: none;
    }

    .coverage-tags {
        margin-right: -1.5rem;
        padding: 0.2rem 1.5rem 0.2rem 0;
        scroll-padding-inline: 0 1.5rem;
    }

    .coverage-tags .tag {
        flex-basis: calc(100% - 3.25rem);
        max-width: 18rem;
        min-height: 2.65rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-card,
    .service-icon,
    .benefit-item,
    .step-card,
    .step-number,
    .coverage-tags,
    .coverage-arrow,
    .faq-item,
    .faq-item summary,
    .faq-item summary::after,
    .faq-content {
        scroll-behavior: auto;
        transition-duration: 0.01ms;
    }
}

@media (max-width: 380px) {
    .header-whatsapp {
        width: 42px;
        padding: 0 !important;
    }

    .header-whatsapp span {
        display: none;
    }
}
