/* --- VARIÁVEIS DE COR E FONTE --- */
:root {
    --cor-verde-agua: #26717A;
    --cor-roxo: #6869AC;
    --cor-bege-suave: #FBF9F6;
    --cor-azul-sereno: #94BEC4;
    --cor-texto: #555555;
    --cor-branca: #FFFFFF;

    --fonte-titulo: 'Roboto', sans-serif;
    --fonte-texto: 'Poppins', sans-serif;
    --transition-suave: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
    font-family: var(--fonte-texto);
    color: var(--cor-texto);
    background-color: var(--cor-branca);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Sistema de pesos tipográficos consistente:
   400 = corpo de texto
   600 = destaque inline
   700 = títulos (via Roboto) */
h1, h2, h3 {
    font-family: var(--fonte-titulo);
    color: var(--cor-verde-agua);
    font-weight: 700;
}

strong {
    font-weight: 600;
}

a { text-decoration: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* --- ANIMAÇÕES JS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-suave);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- BOTÕES --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--fonte-texto);
    transition: var(--transition-suave);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--cor-roxo);
    color: var(--cor-branca);
    box-shadow: 0 8px 25px rgba(104, 105, 172, 0.3);
}

.btn-primary:hover {
    background: #565796;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(104, 105, 172, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--cor-verde-agua);
    border-color: rgba(38, 113, 122, 0.3);
}

.btn-outline:hover {
    background: var(--cor-verde-agua);
    color: var(--cor-branca);
}

.btn-whatsapp-icon {
    color: var(--cor-verde-agua);
    background: transparent;
    padding: 1rem 1.5rem;
    font-weight: 400;
}

.btn-whatsapp-icon i {
    font-size: 1.3rem;
    margin-right: 8px;
    color: #25D366;
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(251, 249, 246, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

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

.logo {
    font-family: var(--fonte-titulo);
    font-size: 1.6rem;
    color: var(--cor-verde-agua);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i { color: var(--cor-roxo); }

.logo img {
    max-height: 50px;
    width: auto;
    transition: var(--transition-suave);
}

.logo img:hover { transform: scale(1.05); }

/* --- REDES SOCIAIS E HEADER ACTIONS --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icon {
    font-size: 1.8rem;
    color: var(--cor-verde-agua);
    transition: var(--transition-suave);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: #E1306C;
    transform: translateY(-3px) scale(1.1);
}

/* --- HAMBURGER MENU --- */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--cor-verde-agua);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- MENU MOBILE OVERLAY --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cor-bege-suave);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: 1.4rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--cor-verde-agua);
    cursor: pointer;
    line-height: 1;
    padding: 8px;
    transition: var(--transition-suave);
}

.mobile-menu-close:hover {
    color: var(--cor-roxo);
    transform: rotate(90deg) scale(1.1);
}

.mobile-menu-link {
    font-size: 1.2rem;
    color: var(--cor-verde-agua);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-suave);
}

.mobile-menu-link:hover { color: #E1306C; }

.mobile-menu-cta {
    font-size: 1rem;
    padding: 1rem 2.5rem;
}

.mobile-menu-wpp {
    font-size: 1rem;
    color: var(--cor-verde-agua);
    font-weight: 600;
}

.mobile-menu-wpp i {
    font-size: 1.2rem;
    margin-right: 8px;
    color: #25D366;
}

/* --- FOOTER SOCIAL --- */
.footer-social { margin-bottom: 1.5rem; }

.footer-social .social-icon {
    color: var(--cor-branca);
    font-size: 2rem;
    display: inline-flex;
    opacity: 0.8;
}

.footer-social .social-icon:hover {
    color: #E1306C;
    opacity: 1;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background-color: var(--cor-bege-suave);
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    z-index: 2;
    width: 100%;
}

.hero-text { max-width: 550px; }

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(104, 105, 172, 0.1);
    color: var(--cor-roxo);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight { color: var(--cor-roxo); }

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

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

.hero-image-bg {
    position: absolute;
    bottom: 0;
    right: 0%;
    width: 60%;
    height: 90%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-image-bg img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom right;
}

/* --- ESPECIALIDADES --- */
.specialties {
    padding: 120px 0;
    background: var(--cor-branca);
}

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

.section-header h2 { font-size: 2.5rem; }

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

.card {
    background: var(--cor-bege-suave);
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: var(--transition-suave);
    border: 1px solid rgba(38, 113, 122, 0.05);
}

.card:hover {
    background: var(--cor-branca);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transform: translateY(-10px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--cor-roxo);
    margin-bottom: 1.5rem;
}

.card h3 { font-size: 1.25rem; }

/* --- AUTORIDADE --- */
.authority {
    position: relative;
    padding: 150px 0;
    background: var(--cor-bege-suave);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.auth-image-bg {
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 90%;
    height: 95%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.auth-image-bg img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom left;
}

.auth-content {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    z-index: 2;
}

.auth-text {
    max-width: 550px;
    background: rgba(251, 249, 246, 0.8);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 20px;
}

.auth-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--cor-texto);
    font-weight: 400;
    margin-bottom: 2rem;
    border-left: 3px solid var(--cor-roxo);
    padding-left: 1.5rem;
}

.checklist li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checklist i {
    color: var(--cor-verde-agua);
    font-size: 1.1rem;
    margin-top: 4px;
}

/* --- JORNADA (fundo branco para quebrar bege consecutivo) --- */
.journey {
    padding: 120px 0;
    background: var(--cor-branca);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    max-width: 1150px;
    margin: 0 auto;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(104, 105, 172, 0.3), transparent);
    z-index: 1;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 90px;
    height: 90px;
    background: var(--cor-branca);
    border: 2px solid var(--cor-roxo);
    color: var(--cor-roxo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fonte-titulo);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: var(--transition-suave);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.step:hover .step-number {
    background: var(--cor-roxo);
    color: var(--cor-branca);
    transform: scale(1.1);
}

.step h3 {
    font-size: 1.3rem;
    color: var(--cor-verde-agua);
    margin-bottom: 1rem;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--cor-texto);
    font-weight: 400;
    padding: 0 10px;
}

/* --- DEPOIMENTOS --- */
.testimonials {
    padding: 90px 0; /* Corrigido: era 50px, agora mais espaçoso */
    background: var(--cor-branca);
}

.testimonials .section-header {
    margin-bottom: 2.5rem; /* Corrigido: era 1rem */
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1150px;
    margin: 0 auto;
}

.testimonials-slider {
    display: flex;
    gap: 3.5rem;
    overflow-x: auto;
    padding: 1.5rem 1rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.testimonials-slider::-webkit-scrollbar { display: none; }

.print-card {
    flex: 0 0 310px;
    scroll-snap-align: center;
    transition: var(--transition-suave);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 4px solid var(--cor-bege-suave);
    background-color: var(--cor-branca);
}

.print-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.print-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- BOTÕES DO SLIDER --- */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--cor-verde-agua);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition-suave);
}

.slider-btn:hover {
    background: var(--cor-branca);
    color: var(--cor-roxo);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: -25px; }
.next-btn { right: -25px; }

/* --- FOOTER --- */
footer {
    position: relative;
    background-color: var(--cor-verde-agua);
    color: var(--cor-branca);
    padding: 100px 0 50px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.map-link {
    color: var(--cor-branca);
    text-decoration: none;
    transition: var(--transition-suave);
}

.map-link:hover {
    color: var(--cor-azul-sereno);
    text-decoration: underline;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/01 - fundo transparente.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.02;
    z-index: -1;
}

footer h2 {
    color: var(--cor-branca);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.footer-info {
    margin-top: 5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- FLOAT BUTTON com animação de entrada com delay --- */
.float-wpp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    /* Primeiro aparece, depois pulsa continuamente */
    animation: wppEntrada 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 2s both,
               pulse 2.5s infinite 2.5s;
}

@keyframes wppEntrada {
    from { opacity: 0; transform: scale(0); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70%  { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- QUIZ TERMÔMETRO VOCAL --- */
.vocal-quiz {
    padding: 100px 0;
    background: var(--cor-verde-agua);
    color: var(--cor-branca);
}

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

.quiz-text h2 {
    color: var(--cor-branca);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quiz-box {
    background: var(--cor-branca);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    color: var(--cor-texto);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Barra de progresso do quiz */
.quiz-progress-wrap {
    height: 4px;
    background: rgba(38, 113, 122, 0.12);
    border-radius: 2px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--cor-verde-agua);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.quiz-step-counter {
    font-size: 0.78rem;
    color: var(--cor-roxo);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quiz-step {
    display: none;
    animation: fadeIn 0.5s ease;
    flex-direction: column;
}

.quiz-step.active { display: flex; }

.quiz-step h3 {
    color: var(--cor-verde-agua);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.quiz-buttons {
    display: flex;
    gap: 1rem;
}

.quiz-buttons .btn { flex: 1; }

/* Botão de reiniciar quiz */
.quiz-reset-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
    opacity: 0.7;
    width: 100%;
}

.quiz-reset-btn:hover { opacity: 1; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- ÁUDIOS ANTES E DEPOIS --- */
.audio-proof {
    padding: 120px 0;
    background: var(--cor-bege-suave);
}

.audio-slider {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    padding: 1.5rem 1rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.audio-slider::-webkit-scrollbar { display: none; }

/* Regra única e consolidada para .audio-card (era duplicada) */
.audio-card {
    flex: 0 0 350px;
    scroll-snap-align: center;
    background: var(--cor-branca);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(38, 113, 122, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition-suave);
}

.audio-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.audio-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.audio-header i {
    font-size: 1.5rem;
    color: var(--cor-roxo);
}

.audio-header h3 {
    font-size: 1.2rem;
    color: var(--cor-verde-agua);
}

.player-group { margin-bottom: 1.5rem; }
.player-group:last-child { margin-bottom: 0; }

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.badge-before {
    background: #FFE8E8;
    color: #D32F2F;
}

.badge-after {
    background: #E8F5E9;
    color: #2E7D32;
}

audio {
    width: 100%;
    height: 40px;
    outline: none;
}

/* --- FAQ (ACCORDION com animação via grid-template-rows) --- */
.faq-section {
    padding: 100px 0;
    background: var(--cor-branca);
}

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

.accordion-item {
    background: var(--cor-bege-suave);
    border: 1px solid rgba(38, 113, 122, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-suave);
}

.accordion-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
    transition: var(--transition-suave);
}

.accordion-header h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--cor-texto);
    font-weight: 600;
    transition: var(--transition-suave);
}

.accordion-header i {
    color: var(--cor-verde-agua);
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

/* Animação via grid-template-rows: suave independente da altura do conteúdo */
.accordion-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s ease;
    background: var(--cor-branca);
}

.accordion-item.active .accordion-body {
    grid-template-rows: 1fr;
}

.accordion-body-inner {
    overflow: hidden;
}

.accordion-body-inner p {
    padding: 0 2.5rem;
    margin: 0 0 1.5rem 0;
    color: var(--cor-texto);
    line-height: 1.8;
    font-weight: 400;
}

.accordion-body-inner p:first-child { padding-top: 1.5rem; }
.accordion-body-inner p:last-child  { padding-bottom: 2rem; margin-bottom: 0; }

.accordion-item.active .accordion-header h3 { color: var(--cor-verde-agua); }
.accordion-item.active .accordion-header i  { transform: rotate(180deg); }
.accordion-item.active {
    border-color: var(--cor-verde-agua);
    box-shadow: 0 5px 15px rgba(38, 113, 122, 0.08);
}

/* --- RESPONSIVO --- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.8rem; }
    .hero-image-bg { width: 45%; right: 0; }
    .auth-image-bg { width: 45%; left: 0; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.3rem; line-height: 1.2; }
    .hero p  { font-size: 1rem; margin-bottom: 2rem; padding: 0 10px; }
    .section-header h2, footer h2 { font-size: 2rem; }

    /* Mostra hamburger, esconde nav normal */
    .hamburger-btn  { display: flex; }
    .header-actions { display: none; }

    .hero, .authority {
        display: flex;
        flex-direction: column;
        padding-top: 100px;
        padding-bottom: 0;
        min-height: auto;
    }

    .authority { padding-top: 80px; }

    .hero-container, .auth-content {
        order: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 1.5rem;
    }

    .auth-text {
        background: transparent;
        padding: 0;
        box-shadow: none;
        backdrop-filter: none;
    }

    .auth-quote {
        font-size: 1.1rem;
        border-left: none;
        border-top: 3px solid var(--cor-roxo);
        padding-left: 0;
        padding-top: 1rem;
    }

    .checklist {
        text-align: left;
        margin-top: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-actions .btn { width: 100%; }

    .hero-image-bg, .auth-image-bg {
        position: relative;
        order: 2;
        width: 100%;
        height: 380px;
        right: auto;
        left: auto;
        bottom: auto;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        overflow: hidden;
    }

    .hero-image-bg img, .auth-image-bg img {
        width: auto;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
        object-position: bottom center;
        display: block;
    }

    .cards-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .steps-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .steps-container::before { display: none; }

    .accordion-header {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .logo img { max-height: 40px; }

    .print-card  { flex: 0 0 75vw; }
    .audio-card  { flex: 0 0 85vw; }

    .slider-btn { display: none; }

    .map-link {
        display: inline-block;
        padding: 8px 0;
        line-height: 1.5;
    }

    .quiz-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .quiz-buttons { flex-direction: column; }
}
