﻿:root {
    --navy: #061938;
    --blue: #0e3a78;
    --gold: #f5b700;
    --magenta: #df006e;
    --green: #16a34a;
    --ink: #07111f;
    --cloud: #f6f8fb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
}

::selection {
    background: var(--gold);
    color: var(--navy);
}

.hero-bg {
    background-image: url("https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?auto=format&fit=crop&w=2200&q=85");
    background-position: center;
    background-size: cover;
}

.hero-color-wash {
    background:
        radial-gradient(circle at center, rgba(245, 183, 0, 0.22), transparent 36%),
        radial-gradient(circle at 18% 25%, rgba(223, 0, 110, 0.22), transparent 28%);
}

.nav-link {
    position: relative;
    color: #334155;
    font-weight: 800;
    font-size: 0.92rem;
    transition: color 180ms ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.4rem;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--gold), var(--magenta));
    transition: transform 180ms ease;
}

.nav-link:hover {
    color: var(--blue);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-cta,
.hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--magenta), #ef4a9f);
    color: white;
    font-weight: 900;
    box-shadow: 0 14px 36px rgba(223, 0, 110, 0.28);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
    padding: 0.8rem 1.1rem;
}

.hero-primary {
    min-height: 3.5rem;
    width: 100%;
    padding: 0 1.4rem;
}

.hero-secondary {
    display: inline-flex;
    min-height: 3.5rem;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-weight: 900;
    backdrop-filter: blur(12px);
    transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.hero-primary:hover,
.hero-secondary:hover {
    transform: translateY(-2px);
}

.hero-primary:hover {
    box-shadow: 0 18px 44px rgba(223, 0, 110, 0.36);
}

.hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-link {
    border-radius: 0.5rem;
    padding: 0.85rem 1rem;
    font-weight: 800;
    color: #334155;
}

.mobile-link:hover {
    background: #f1f5f9;
}

.hero-stat {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    backdrop-filter: blur(14px);
}

.hero-stat span,
.hero-stat small {
    display: block;
}

.hero-stat span {
    color: white;
    font-size: 1.35rem;
    font-weight: 900;
}

.hero-stat small {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 700;
}

.section-wrap {
    padding: 5rem 0;
    scroll-margin-top: 5.5rem;
}

.section-heading {
    max-width: 46rem;
}

.section-kicker {
    margin-bottom: 0.9rem;
    color: var(--magenta);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.section-title {
    color: var(--navy);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.01em;
}

.section-subtitle {
    margin-top: 1.25rem;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.8;
}

.info-panel,
.process-step,
.car-card,
.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background: white;
    box-shadow: 0 18px 60px rgba(6, 25, 56, 0.08);
}

.info-panel {
    padding: 2rem;
    text-align: center;
}

.about-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-panel h3,
.process-step h3 {
    margin-top: 1rem;
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 900;
}

.info-panel p,
.process-step p {
    margin-top: 0.7rem;
    color: #64748b;
    line-height: 1.7;
}

.panel-icon {
    margin: 0 auto;
    height: 2.6rem;
    width: 2.6rem;
    color: var(--magenta);
}

.about-photo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.75fr);
    gap: 1rem;
}

.about-photo-main,
.about-photo-small {
    width: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 18px 60px rgba(6, 25, 56, 0.12);
}

.about-photo-main {
    height: 28rem;
}

.about-photo-small {
    height: calc(14rem - 0.5rem);
}

.benefit-item {
    display: flex;
    min-height: 5.5rem;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    border: 1px solid #dbe4ef;
    border-radius: 0.5rem;
    background: white;
    padding: 1.1rem;
    color: var(--navy);
    font-weight: 900;
    text-align: center;
}

.benefit-item svg {
    height: 1.45rem;
    width: 1.45rem;
    color: var(--gold);
    flex: none;
}

.process-step {
    position: relative;
    padding: 1.6rem;
    text-align: center;
}

.process-step span {
    display: inline-flex;
    height: 2.2rem;
    min-width: 2.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 900;
}

.process-step svg {
    margin: 1.1rem auto 0;
    height: 2rem;
    width: 2rem;
    color: var(--blue);
}

.segment-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.segment-tab {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 1px solid #dbe4ef;
    border-radius: 0.5rem;
    background: white;
    padding: 0.85rem 1rem;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 900;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.segment-tab:hover {
    transform: translateY(-2px);
    border-color: rgba(223, 0, 110, 0.35);
}

.segment-tab.is-active {
    border-color: transparent;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: white;
    box-shadow: 0 14px 34px rgba(14, 58, 120, 0.24);
}

.segment-panel {
    display: none;
}

.segment-panel.is-active {
    display: block;
}

.segment-summary {
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white;
    padding: 1.35rem;
}

.segment-summary strong {
    color: var(--gold);
}

.use-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.45rem 0.75rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.78rem;
    font-weight: 800;
}

.car-card {
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(6, 25, 56, 0.14);
}

.car-visual {
    aspect-ratio: 16 / 11;
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center 38%;
    background: #f8fafc;
}

.spec-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 0.5rem;
    background: #f8fafc;
    padding: 0.7rem;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 800;
}

.spec-chip svg {
    height: 1rem;
    width: 1rem;
    color: var(--magenta);
    flex: none;
}

.feature-list li {
    display: flex;
    gap: 0.55rem;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.45;
}

.feature-list svg {
    margin-top: 0.15rem;
    height: 1rem;
    width: 1rem;
    color: var(--green);
    flex: none;
}

.book-btn {
    display: inline-flex;
    min-height: 2.8rem;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border-radius: 0.5rem;
    background: #16a34a;
    color: white;
    font-weight: 900;
    transition: background 180ms ease, transform 180ms ease;
}

.book-btn:hover {
    background: #12833d;
    transform: translateY(-1px);
}

.brand-whatsapp-icon {
    display: inline-block;
    height: 1.25em;
    width: 1.25em;
    flex: none;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.967-.94 1.166-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.074-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.371-.272.298-1.04 1.017-1.04 2.48 0 1.462 1.065 2.875 1.213 3.073.149.198 2.096 3.2 5.077 4.487.71.306 1.263.489 1.694.626.712.227 1.36.195 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.29.173-1.413-.074-.124-.272-.198-.57-.347M12.05 21.785h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982 1-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.002-5.45 4.436-9.884 9.889-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.888 9.884M20.52 3.449C18.258 1.185 15.25-.061 12.055-.063 5.463-.063.098 5.302.096 11.892a11.9 11.9 0 0 0 1.595 5.945L0 24l6.305-1.654a11.9 11.9 0 0 0 5.739 1.462h.005c6.592 0 11.957-5.365 11.96-11.957A11.86 11.86 0 0 0 20.52 3.449Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.faq-item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.25rem;
    text-align: left;
    color: var(--navy);
    font-weight: 900;
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
    color: #475569;
    line-height: 1.75;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.terms-answer {
    border-radius: 0.5rem;
    background: #f8fafc;
    padding: 1rem;
}

.terms-answer-intro {
    color: var(--navy);
    font-weight: 800;
}

.terms-answer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1rem;
}

.terms-answer-item {
    display: flex;
    gap: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background: white;
    padding: 0.85rem;
}

.terms-answer-item > span {
    display: inline-flex;
    height: 1.9rem;
    width: 1.9rem;
    flex: none;
    align-items: center;
    justify-content: center;
    border-radius: 0.45rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 900;
}

.terms-answer-item strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 900;
}

.terms-answer-item p {
    margin-top: 0.35rem;
    color: #475569;
    font-size: 0.86rem;
    line-height: 1.55;
}

.faq-answer ul {
    margin-top: 0.75rem;
    padding-left: 1.1rem;
    list-style: disc;
}

.contact-band {
    background:
        radial-gradient(circle at 12% 18%, rgba(245, 183, 0, 0.18), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(223, 0, 110, 0.2), transparent 30%),
        linear-gradient(135deg, var(--navy), #08275a 52%, #061226);
}

.contact-tile {
    display: flex;
    min-height: 10rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    color: white;
    backdrop-filter: blur(12px);
    transition: transform 180ms ease, background 180ms ease;
}

.contact-tile:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
}

.contact-tile svg,
.contact-tile .brand-whatsapp-icon {
    height: 2rem;
    width: 2rem;
}

.contact-tile strong {
    font-size: 1.1rem;
    font-weight: 900;
}

.contact-tile span:last-child {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 800;
}

.footer-link:hover {
    color: white;
}

.social-icon {
    display: inline-flex;
    height: 2.8rem;
    width: 2.8rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transition: transform 180ms ease, background 180ms ease;
}

.social-icon svg {
    height: 1.25rem;
    width: 1.25rem;
    fill: currentColor;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.social-facebook:hover {
    background: #1877f2;
}

.social-instagram:hover {
    background: #e4405f;
}

.social-tiktok:hover {
    background: #010101;
}

.whatsapp-float {
    position: fixed;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 60;
    display: inline-flex;
    height: 4rem;
    width: 4rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #25d366;
    color: white;
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.42);
    transition: transform 180ms ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
}

.whatsapp-float .brand-whatsapp-icon {
    height: 2rem;
    width: 2rem;
}

@media (min-width: 640px) {
    .hero-primary,
    .hero-secondary {
        width: auto;
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }
}

@media (max-width: 640px) {
    .section-wrap {
        padding: 4rem 0;
    }

    .section-heading,
    .section-title,
    .section-subtitle,
    .segment-summary {
        text-align: center;
    }

    .about-photo-grid {
        grid-template-columns: minmax(0, 1.35fr) minmax(5.75rem, 0.75fr);
        gap: 0.65rem;
    }

    .about-photo-main {
        height: 16rem;
    }

    .about-photo-small {
        height: calc(8rem - 0.325rem);
    }

    .about-card-grid {
        gap: 0.65rem;
    }

    .info-panel {
        padding: 0.85rem 0.55rem;
    }

    .info-panel h3 {
        margin-top: 0.55rem;
        font-size: 0.82rem;
        line-height: 1.2;
    }

    .info-panel p {
        margin-top: 0.4rem;
        font-size: 0.68rem;
        line-height: 1.35;
    }

    .panel-icon {
        height: 1.55rem;
        width: 1.55rem;
    }

    .segment-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .segment-tab {
        min-height: 3rem;
        padding: 0.7rem 0.55rem;
        white-space: normal;
        text-align: center;
        font-size: 0.78rem;
        line-height: 1.2;
    }

    .terms-answer-grid {
        grid-template-columns: 1fr;
    }

    .terms-answer {
        padding: 0.8rem;
    }
}
