/* ============================================================
   HADERA CORRETORA — DESIGN SYSTEM
   Baseado no Manual de Marca (Vermelho · Branco · Cinza)
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores da marca */
    --red: #C0272D;
    --red-dark: #9E1F24;
    --white: #FFFFFF;
    --ink: #14110F;
    --ink-soft: #2B2B2B;
    --muted: #6B6660;

    /* Neutros quentes */
    --cream: #F7F4F0;
    --cream-dark: #EFEAE3;
    --line: #E4DDD4;

    /* Tipografia */
    --font-display: "Space Grotesk", system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
    --font-serif: "Instrument Serif", Georgia, serif;

    /* Layout */
    --container: 1240px;
    --radius: 14px;
    --radius-sm: 8px;

    --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}


/* ============================================================
   TIPOGRAFIA UTILITÁRIA
   ============================================================ */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 22px;
}

.eyebrow.light {
    color: #FFB4B7;
}

.bar-motif {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}

.bar-motif i {
    display: block;
    width: 3px;
    background: var(--red);
    border-radius: 1px;
}

.bar-motif i:nth-child(1) {
    height: 6px;
}

.bar-motif i:nth-child(2) {
    height: 9px;
}

.bar-motif i:nth-child(3) {
    height: 12px;
}

.section-head {
    max-width: 720px;
    margin-bottom: 70px;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.4vw, 56px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 20px;
}

.section-head p {
    font-size: 17px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
}


/* ============================================================
   BOTÕES
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 26px;
    border-radius: 999px;
    border: 1.5px solid transparent;

    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;

    cursor: pointer;
    transition: var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(192, 39, 45, 0.28);
}

.btn-ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--ink);
}

.btn-ghost:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.btn-ghost svg {
    transition: transform var(--ease);
}

.btn-ghost:hover svg {
    transform: translateX(3px);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: gap var(--ease);
}

.link-arrow svg {
    transition: transform var(--ease);
}

.link-arrow:hover svg {
    transform: translateX(4px);
}


/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 76px;
}

.brand img {
    width: 140px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-soft);
    position: relative;
    transition: color var(--ease);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1.5px;
    background: var(--red);
    transition: width var(--ease);
}

.main-nav a:hover {
    color: var(--red);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-cta {
    padding: 12px 22px;
    font-size: 14px;
}

@media (max-width: 960px) {
    .main-nav {
        display: none;
    }

    .header-inner {
        min-height: 68px;
    }

    .brand img {
        width: 120px;
    }
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
    padding: 100px 0 120px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: var(--cream);
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.hero-copy {
    max-width: 620px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(42px, 5.6vw, 76px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 26px;
}

.hero h1 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--red);
}

.hero-lead {
    font-size: 18px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 38px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
    list-style: none;
}

.hero-stats li {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stats span {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.01em;
}

/* Visual do hero */

.hero-visual {
    position: relative;
}

.hero-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(20, 17, 15, 0.25);
}

.hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-frame::after {
    content: "";
    position: absolute;
    left: 0;
    top: 15%;
    height: 40%;
    width: 6px;
    background: var(--red);
}

.hero-tag {
    position: absolute;
    bottom: -22px;
    left: -22px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 14px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    box-shadow: 0 20px 40px -10px rgba(20, 17, 15, 0.15);
}

.hero-tag .dot {
    width: 8px;
    height: 8px;
    background: #27AE60;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.2);
}

@media (max-width: 960px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero::before {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-copy {
        max-width: 100%;
        text-align: left;
    }

    .hero-stats {
        gap: 32px;
    }

    .hero-stats strong {
        font-size: 26px;
    }

    .hero-frame {
        aspect-ratio: 5 / 4;
    }

    .hero-tag {
        left: 12px;
        bottom: -18px;
        font-size: 12px;
        padding: 12px 16px;
    }
}

@media (max-width: 500px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 22px;
        padding-top: 26px;
    }

    .hero-stats strong {
        font-size: 22px;
    }

    .hero-stats span {
        font-size: 12px;
    }
}


/* ============================================================
   MANIFESTO
   ============================================================ */

.manifesto {
    background: var(--ink);
    color: var(--white);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.manifesto::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 60%;
    background: var(--red);
}

.manifesto-quote {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4.5vw, 62px);
    line-height: 1.1;
    letter-spacing: -0.015em;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.manifesto-quote em {
    font-style: italic;
    color: #FFB4B7;
    display: block;
}

@media (max-width: 600px) {
    .manifesto {
        padding: 60px 0;
    }

    .manifesto::before {
        height: 4px;
        width: 40%;
        top: 24px;
        left: 50%;
        transform: translateX(-50%);
    }
}


/* ============================================================
   OPERADORAS PARCEIRAS
   ============================================================ */

.operadoras {
    padding: 110px 0 90px;
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
}

.operadoras .section-head h2 {
    color: var(--white);
}

.operadoras .section-head p {
    color: rgba(255, 255, 255, 0.65);
}

.carousel-operadoras {
    position: relative;
    width: 100%;
    padding: 30px 0 10px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.carousel-track-operadoras {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: scroll-operadoras 40s linear infinite;
}

.carousel-track-operadoras:hover {
    animation-play-state: paused;
}

@keyframes scroll-operadoras {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-operadora {
    width: 150px;
    height: auto;
    flex-shrink: 0;
    opacity: 0.55;
    filter: brightness(0) invert(1);
    transition: opacity var(--ease);
}

.logo-operadora:hover {
    opacity: 1;
}

@media (max-width: 900px) {
    .operadoras {
        padding: 80px 0 70px;
    }

    .logo-operadora {
        width: 120px;
    }

    .carousel-track-operadoras {
        gap: 50px;
        animation-duration: 30s;
    }
}


/* ============================================================
   PLANOS DE SAÚDE
   ============================================================ */

.plans {
    padding: 130px 0;
    background: var(--white);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}

.plan {
    padding: 55px 40px 45px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: background var(--ease);
    position: relative;
}

.plan:last-child {
    border-right: none;
}

.plan:hover {
    background: var(--cream);
}

.plan-index {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: 90px;
}

.plan h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.2;
}

.plan p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 32px;
    flex-grow: 1;
}

@media (max-width: 900px) {
    .plans {
        padding: 80px 0;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan {
        padding: 40px 30px;
        border-right: none;
    }

    .plan-index {
        margin-bottom: 40px;
    }
}


/* ============================================================
   DIFERENCIAIS
   ============================================================ */

.values {
    padding: 130px 0;
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.value {
    padding: 55px 50px;
    background: var(--cream);
    transition: background var(--ease);
}

.value:hover {
    background: var(--white);
}

.value-index {
    display: block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: 70px;
}

.value h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 14px;
}

.value p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 420px;
}

@media (max-width: 800px) {
    .values {
        padding: 80px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value {
        padding: 40px 30px;
    }

    .value-index {
        margin-bottom: 30px;
    }
}


/* ============================================================
   SOBRE A HADERA
   ============================================================ */

.about {
    padding: 130px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.about-visual img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px -20px rgba(20, 17, 15, 0.22);
}

.about-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 28px;
}

.about-copy p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 22px;
}

.about-copy p em {
    color: var(--ink);
    font-style: italic;
}

.pull-quote {
    margin-top: 40px;
    padding: 4px 0 4px 26px;
    border-left: 3px solid var(--red);
    font-family: var(--font-serif);
    font-size: 26px;
    line-height: 1.35;
    color: var(--ink);
    letter-spacing: -0.005em;
}

.pull-quote em {
    font-style: italic;
}

@media (max-width: 900px) {
    .about {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual img {
        aspect-ratio: 5 / 4;
    }

    .pull-quote {
        font-size: 22px;
    }
}


/* ============================================================
   AVALIAÇÕES
   ============================================================ */

.reviews {
    padding: 130px 0;
    background: var(--cream);
    overflow: hidden;
}

.reviews-carousel {
    overflow: hidden;
    margin-bottom: 50px;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    display: flex;
    flex-direction: column;

    padding: 40px 34px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: inherit;
    cursor: pointer;

    transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(192, 39, 45, 0.35);
    box-shadow: 0 20px 40px -15px rgba(20, 17, 15, 0.12);
}

.review-card:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
}

.review-card:hover::after {
    transform: translateX(3px);
}

.review-stars {
    margin-bottom: 20px;
    color: #E5B94A;
    font-size: 16px;
    letter-spacing: 3px;
}

.review-text {
    flex: 1;
    margin-bottom: 28px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.75;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: var(--red);
    color: var(--white);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author-info {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.review-author-info strong {
    color: var(--ink);
    font-size: 14.5px;
    font-weight: 700;
}

.review-author-info span {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.01em;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.reviews-nav button {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    transition: var(--ease);
}

.reviews-nav button:hover:not(:disabled) {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.reviews-nav button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

@media (max-width: 1000px) {
    .review-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 600px) {
    .reviews {
        padding: 80px 0;
    }

    .review-card {
        flex: 0 0 100%;
        padding: 30px 26px;
    }
}


/* ============================================================
   OUTROS SEGUROS
   ============================================================ */

.other {
    padding: 130px 0;
    background: var(--white);
    overflow: hidden;
}

.insurance-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.insurance-track {
    display: flex;
    gap: 22px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.insurance-card {
    position: relative;
    flex: 0 0 calc((100% - 44px) / 3);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius);
    background: #222;
}

.insurance-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.insurance-card:hover img {
    transform: scale(1.06);
}

.insurance-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 12, 0.15) 0%,
            rgba(10, 10, 12, 0.55) 50%,
            rgba(10, 10, 12, 0.95) 100%);
}

.insurance-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 30px;
    color: var(--white);
}

.insurance-tag {
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.insurance-content h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.1;
    margin-bottom: 10px;
}

.insurance-content p {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 22px;
    max-width: 300px;
}

.insurance-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--white);
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    align-self: flex-start;
    transition: border-color var(--ease), gap var(--ease);
}

.insurance-link:hover {
    border-color: var(--white);
    gap: 12px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--ease);
}

.carousel-arrow:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-50%) scale(1.06);
}

.carousel-prev {
    left: 16px;
}

.carousel-next {
    right: 16px;
}

.carousel-arrow:disabled {
    opacity: 0.3;
    pointer-events: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--line);
    cursor: pointer;
    transition: var(--ease);
}

.carousel-dot.active {
    width: 28px;
    border-radius: 20px;
    background: var(--red);
}

@media (max-width: 900px) {
    .insurance-card {
        flex: 0 0 calc((100% - 22px) / 2);
    }
}

@media (max-width: 600px) {
    .other {
        padding: 80px 0;
    }

    .insurance-card {
        flex: 0 0 100%;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}


/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */

.location {
    padding: 130px 0;
    background: var(--cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.location-map {
    min-height: 460px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px -20px rgba(20, 17, 15, 0.18);
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
}

.location-info {
    padding: 50px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    background: var(--white);
    border-radius: var(--radius);
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.location-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 39, 45, 0.08);
    border-radius: 50%;
    color: var(--red);
}

.location-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
}

.location-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.location-item p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.location-cta {
    align-self: flex-start;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .location {
        padding: 80px 0;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-info {
        padding: 36px 28px;
    }
}


/* ============================================================
   CONTATO
   ============================================================ */

.contact {
    padding: 130px 0;
    background: var(--ink);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(192, 39, 45, 0.28), transparent 60%);
    pointer-events: none;
}

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.contact-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.4vw, 54px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 24px;
}

.contact-copy p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 460px;
}

.contact-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15.5px;
    line-height: 1.5;
    outline: none;
    transition: var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(192, 39, 45, 0.15);
}

.form-group textarea {
    resize: none;
    /* ← tira o controle de redimensionar */
    min-height: 140px;
    font-family: var(--font-body);
}

/* ============================================================
   BOTÃO DE ENVIO DO FORMULÁRIO (CORRIGIDO)
   ============================================================ */

.contact-form .btn-form {
    /* Reset de possíveis regras antigas */
    width: auto;
    max-width: fit-content;
    flex: 0 0 auto;

    /* Impede esticar no eixo cruzado */
    align-self: flex-start;

    /* Layout interno */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    /* Aparência */
    padding: 16px 32px;
    min-height: 54px;
    height: auto;

    border: none;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);

    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.01em;
    white-space: nowrap;

    cursor: pointer;
    transition: var(--ease);
    margin-top: 6px;
}

.contact-form .btn-form svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    transition: transform var(--ease);
}

.contact-form .btn-form:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(192, 39, 45, 0.28);
}

.contact-form .btn-form:hover svg {
    transform: translateX(3px);
}

.contact-form .btn-form:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-note {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
}

.form-note strong {
    color: var(--white);
    font-weight: 700;
}


/* Feedback visual de sucesso/erro */

.form-feedback {
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    display: none;
}

.form-feedback.visible {
    display: block;
}

.form-feedback.success {
    background: rgba(39, 174, 96, 0.12);
    border: 1px solid rgba(39, 174, 96, 0.4);
    color: #6EE7A8;
}

.form-feedback.error {
    background: rgba(192, 39, 45, 0.12);
    border: 1px solid rgba(192, 39, 45, 0.4);
    color: #FFB4B7;
}

@media (max-width: 900px) {
    .contact {
        padding: 80px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-copy p {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-form .btn-form {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
}

/* Texto pré-preenchido do textarea */
#mensagem {
    color: var(--white);
    font-size: 15.5px;
    line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: var(--white);
    color: var(--ink-soft);
    padding-top: 80px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 70px;
    border-bottom: 1px solid var(--line);
}


/* ---------- Marca ---------- */

.footer-brand .footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 22px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 26px;
    max-width: 300px;
}


/* ---------- Redes sociais ---------- */

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cream);
    color: var(--ink);
    border: 1px solid var(--line);
    transition: var(--ease);
}

.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}


/* ---------- Colunas ---------- */

.footer-column h4 {
    font-family: var(--font-display);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a,
.footer-column ul li span {
    font-size: 14px;
    color: var(--muted);
    transition: color var(--ease);
}

.footer-column ul li a:hover {
    color: var(--red);
}


/* ---------- Contato com ícones ---------- */

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--red);
}

.footer-contact li a {
    color: var(--muted);
    transition: color var(--ease);
}

.footer-contact li a:hover {
    color: var(--red);
}


/* ---------- Parte inferior ---------- */

.footer-bottom {
    padding: 26px 0;
    background: var(--cream);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 12.5px;
    color: var(--muted);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 26px;
}

.footer-legal a {
    font-size: 12.5px;
    color: var(--muted);
    transition: color var(--ease);
}

.footer-legal a:hover {
    color: var(--red);
}


/* ---------- Responsivo ---------- */

@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding-bottom: 50px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */

.whatsapp-float {
    position: fixed;
    right: 26px;
    bottom: 26px;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: var(--white);

    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);

    z-index: 9999;
    transition: transform var(--ease), box-shadow var(--ease);
}

.whatsapp-float svg {
    fill: currentColor;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-float:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.5);
    outline-offset: 4px;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.55;
    z-index: -1;
    animation: whatsapp-pulse 2.2s ease-out infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }

    100% {
        transform: scale(1.75);
        opacity: 0;
    }
}

@media (max-width: 600px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float::before {
        animation: none;
    }
}


/* ============================================================
   ACESSIBILIDADE / PREFERÊNCIAS
   ============================================================ */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(192, 39, 45, 0.4);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *:not(.carousel-track-operadoras) {
        transition: none !important;
        animation: none !important;
    }
}

/* ============================================================
   TEXTO DO CARD DE AVALIAÇÃO
   ============================================================ */

.review-card::after {
    content: "Avaliar no Google ↗";
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--red);
    transition: transform var(--ease);
}


/* ============================================================
   CTA DE AVALIAÇÃO
   ============================================================ */

.reviews-cta {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.reviews-cta .btn {
    padding: 16px 30px;
    font-size: 15px;
}

@media (max-width: 600px) {
    .reviews-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   DRAG NOS CARROSSÉIS
   ============================================================ */

.reviews-track,
.insurance-track {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: pan-y;
}

/* Impede arrastar imagens como arquivo */
.review-card img,
.insurance-card img {
    -webkit-user-drag: none;
    pointer-events: none;
}

/* ============================================================
   PÁGINA LEGAL (Política de Privacidade, Termos de Uso)
   ============================================================ */

.legal-page {
    padding: 80px 0 100px;
    background: var(--white);
}

.legal-container {
    max-width: 780px;
}

.legal-head {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
}

.legal-head h1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 20px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 20px;
    padding-top: 10px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 18px;
}

.legal-section p a {
    color: var(--red);
    font-weight: 600;
    border-bottom: 1px solid rgba(192, 39, 45, 0.3);
    transition: border-color var(--ease);
}

.legal-section p a:hover {
    border-bottom-color: var(--red);
}

.legal-section ul {
    list-style: none;
    margin: 20px 0 24px;
    padding: 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 26px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 12px;
}

.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 1.5px;
    background: var(--red);
}

.legal-section strong {
    color: var(--ink);
    font-weight: 600;
}

.legal-contact {
    font-size: 20px;
    font-family: var(--font-display);
    font-weight: 600;
    margin: 24px 0;
}

.legal-contact a {
    color: var(--red);
    border-bottom: 2px solid rgba(192, 39, 45, 0.3);
    transition: border-color var(--ease);
}

.legal-contact a:hover {
    border-bottom-color: var(--red);
}

.legal-back {
    margin-top: 70px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}

@media (max-width: 600px) {
    .legal-page {
        padding: 50px 0 70px;
    }

    .legal-head {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .legal-section h2 {
        font-size: 20px;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 15px;
    }
}

/* ============================================================
   SETAS DISCRETAS DOS CARROSSÉIS (desktop)
   ============================================================ */

.reviews-carousel,
.insurance-carousel {
    position: relative;
    overflow: hidden;
    /* ✅ sem padding, sem margin */
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 42px;
    height: 42px;
    border-radius: 50%;

    /* Fundo escuro translúcido — combina com os cards */
    background: rgba(20, 17, 15, 0.55);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

/* Aparecem no hover */
.reviews-carousel:hover .carousel-nav,
.insurance-carousel:hover .carousel-nav,
.carousel-nav:focus-visible {
    opacity: 1;
    pointer-events: auto;
}

.carousel-nav:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-50%) scale(1.06);
}

.carousel-nav-prev {
    left: 14px;
}

.carousel-nav-next {
    right: 14px;
}

/* Só no desktop */
@media (max-width: 900px) {
    .carousel-nav {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .carousel-nav {
        transition: none;
    }
}

/* ============================================================
   HEADER E FOOTER SIMPLIFICADOS — PÁGINA LEGAL
   ============================================================ */

.legal-header {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
}

.legal-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 72px;
}

.legal-header .brand img {
    width: 140px;
    height: auto;
}

.legal-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    transition: var(--ease);
}

.legal-back-link:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.legal-back-link svg {
    transition: transform var(--ease);
}

.legal-back-link:hover svg {
    transform: translateX(-3px);
}


/* ---------- Footer ---------- */

.legal-footer {
    padding: 40px 0;
    background: var(--cream);
    border-top: 1px solid var(--line);
}

.legal-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-footer p {
    font-size: 12.5px;
    color: var(--muted);
    margin: 0;
}

.legal-footer a {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    transition: color var(--ease);
}

.legal-footer a:hover {
    color: var(--red);
}


/* ---------- Responsivo ---------- */

@media (max-width: 600px) {

    .legal-header-inner {
        min-height: 64px;
    }

    .legal-header .brand img {
        width: 110px;
    }

    .legal-back-link {
        padding: 8px 14px;
        font-size: 13px;
    }

    .legal-back-link span {
        display: none;
        /* esconde o texto, deixa só a setinha */
    }

    .legal-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

/* ============================================================
   POPUP FALE COM ESPECIALISTA
   ============================================================ */

.specialist-popup {
    position: fixed;

    left: 26px;
    bottom: 26px;

    width: 340px;
    max-width: calc(100vw - 32px);

    padding: 22px 22px 20px;

    background: var(--white);
    border-radius: 18px;

    border-top: none;

    box-shadow:
        0 2px 6px rgba(20, 17, 15, 0.04),
        0 30px 60px -20px rgba(20, 17, 15, 0.22);

    z-index: 9998;

    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;

    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialist-popup.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


/* ---------- Botão fechar ---------- */

.specialist-close {
    position: absolute;
    top: 14px;
    right: 14px;

    width: 26px;
    height: 26px;
    border-radius: 50%;

    background: transparent;
    border: none;
    color: var(--muted);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: background var(--ease), color var(--ease);
}

.specialist-close:hover {
    background: var(--cream);
    color: var(--ink);
}


/* ---------- Linha da marca (logo + status) ---------- */

.specialist-brand {
    display: flex;
    align-items: center;
    gap: 10px;

    padding-bottom: 14px;
    margin-bottom: 14px;

    border-bottom: 1px solid var(--line);
}

.specialist-brand img {
    width: 68px;
    height: auto;
    flex-shrink: 0;
}

.specialist-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 4px 10px;
    border-radius: 999px;

    background: rgba(39, 174, 96, 0.1);
    color: #1E8C4C;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.specialist-status .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #27AE60;

    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
    animation: pulse-dot 2s ease-out infinite;
}

@keyframes pulse-dot {
    0%   { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.5); }
    100% { box-shadow: 0 0 0 8px rgba(39, 174, 96, 0); }
}


/* ---------- Conteúdo ---------- */

.specialist-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.specialist-content strong {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1.25;
}

.specialist-content p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
    margin-bottom: 14px;
}


/* ---------- Botão CTA ---------- */

.specialist-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 12px 18px;

    background: var(--red);
    color: var(--white);

    border-radius: 999px;

    font-size: 13.5px;
    font-weight: 600;

    transition: var(--ease);
}

.specialist-cta:hover {
    background: var(--red-dark);
    box-shadow: 0 10px 24px -6px rgba(192, 39, 45, 0.4);
    transform: translateY(-1px);
}

.specialist-cta svg {
    flex-shrink: 0;
    transition: transform var(--ease);
}

.specialist-cta:hover svg {
    transform: translateX(3px);
}


/* ---------- Responsivo ---------- */

@media (max-width: 600px) {

    .specialist-popup {
        left: 16px;
        right: 16px;
        bottom: 84px;

        width: auto;
        max-width: none;

        padding: 20px 20px 18px;
    }

    .specialist-brand img {
        width: 60px;
    }

    .specialist-content strong {
        font-size: 16px;
    }

    .specialist-content p {
        font-size: 13.5px;
    }

    .specialist-cta {
        width: 100%;
    }
}


/* ---------- Preferência por menos movimento ---------- */

@media (prefers-reduced-motion: reduce) {
    .specialist-popup {
        transition: none;
    }
    .specialist-status .dot {
        animation: none;
    }
}