/* ===== Animação FadeIn/SlideUp para seções ===== */
.fadein-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
    will-change: opacity, transform;
}
.fadein-section.visible {
    opacity: 1;
    transform: none;
}

/* ===== Destaque lateral e ícone ===== */
.objetivos-container, .missao-container, .visao-container, .proposito-container {
    border-left: 6px solid #b97a4a;
    background: #fff9f3;
    box-shadow: 0 2px 16px rgba(180,140,90,0.04);
    margin-bottom: 32px;
    border-radius: 12px;
}
.alt-bg {
    background: #f3e6d6 !important;
}
.section-icon {
    font-size: 1.7rem;
    vertical-align: middle;
    margin-right: 10px;
    filter: drop-shadow(0 2px 6px #e5c7b1);
}

/* Pequena animação nos cards de atendimento */
.help-card {
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s, background 0.3s;
}
.help-card:hover {
    background: #f7ede2;
    transform: translateY(-8px) scale(1.04) rotate(-1deg);
    box-shadow: 0 20px 50px rgba(217, 138, 91, 0.13);
    border: 1.5px solid #b97a4a;
}

/* Botões com transição suave */
.waitlist-btn, .hero-btn {
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.waitlist-btn:hover, .hero-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 24px rgba(185,122,74,0.18);
}

/* Responsividade extra para containers das seções */
@media (max-width: 700px) {
    .objetivos-container, .missao-container, .visao-container, .proposito-container {
        padding: 0 8px;
        border-left: 3px solid #b97a4a;
    }
}
/* ===== Missão, Visão, Propósito Sections ===== */
.missao-section, .visao-section, .proposito-section {
    width: 100%;
    background: #f7ede2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px 0 32px 0;
}
.missao-container, .visao-container, .proposito-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 32px;
}
.missao-section h2, .visao-section h2, .proposito-section h2 {
    font-size: 2rem;
    color: #8b5a3c;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    margin-bottom: 16px;
}
.missao-section p, .visao-section p, .proposito-section p {
    color: #6b4423;
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 12px;
    font-family: 'DM Sans', sans-serif;
}
@media (max-width: 900px) {
    .missao-container, .visao-container, .proposito-container {
        padding: 0 10px;
    }
    .missao-section h2, .visao-section h2, .proposito-section h2 {
        font-size: 1.3rem;
    }
    .missao-section p, .visao-section p, .proposito-section p {
        font-size: 0.98rem;
    }
}
/* ===== Objetivos Section ===== */
.objetivos-section {
    width: 100%;
    background: #f7ede2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px 0 32px 0;
}
.objetivos-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 32px;
}
.objetivos-section h2 {
    font-size: 2rem;
    color: #8b5a3c;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    margin-bottom: 16px;
}
.objetivos-section p {
    color: #6b4423;
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 12px;
    font-family: 'DM Sans', sans-serif;
}
@media (max-width: 900px) {
    .objetivos-container {
        padding: 0 10px;
    }
    .objetivos-section h2 {
        font-size: 1.3rem;
    }
    .objetivos-section p {
        font-size: 0.98rem;
    }
}
/* ===== Lista de Espera Widget Flutuante ===== */
.waitlist-widget {
    position: fixed;
    bottom: 110px;
    right: 32px;
    z-index: 1002;
    display: flex;
    font-family: 'Baloo2', sans-serif;
    flex-direction: column;
    align-items: flex-end;
}
.waitlist-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #b97a4a 0%, #8b5a3c 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px 12px 16px;
    font-size: 1.08rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(180,140,90,0.10);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    margin-bottom: 10px;
    min-width: 210px;
}
.waitlist-btn:hover {
    background: linear-gradient(90deg, #8b5a3c 0%, #b97a4a 100%);
    box-shadow: 0 4px 18px rgba(180,140,90,0.16);
}
.waitlist-btn-text {
    white-space: nowrap;
    font-size: 1.08rem;
    font-weight: 700;
}
.waitlist-popup {
    display: none;
    flex-direction: column;
    background: #f3e6d6;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(180,140,90,0.13);
    padding: 22px 24px 18px 24px;
    width: min(340px, calc(100vw - 32px));
    min-width: 260px;
    margin-bottom: 8px;
    position: relative;
}
.waitlist-popup[aria-hidden="false"] {
    display: flex;
}
.waitlist-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.08rem;
    color: #7d5a3a;
    margin-bottom: 8px;
}
.waitlist-close {
    background: none;
    border: none;
    color: #b97a4a;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 700;
}
.waitlist-popup-body p {
    margin: 0 0 10px 0;
    color: #7d5a3a;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
}
.waitlist-popup-body form {
    display: flex;
    gap: 8px;
    margin-bottom: 0;
}
.waitlist-popup-body input[type="email"] {
    border: 1px solid #d1bfa7;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    background: #fff;
    color: #5a3a2a;
    transition: border 0.2s;
    flex: 1 1 60%;
}
.waitlist-popup-body input[type="email"]:focus {
    border: 1.5px solid #b97a4a;
}
.waitlist-popup-body button[type="submit"] {
    background: linear-gradient(90deg, #b97a4a 0%, #8b5a3c 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 7px 18px;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.waitlist-popup-body button[type="submit"]:hover {
    background: linear-gradient(90deg, #8b5a3c 0%, #b97a4a 100%);
}
/* ===== Footer Moderno Terroso ===== */
.site-footer {
    background: linear-gradient(135deg, rgba(220, 190, 150, 0.97) 0%, rgba(200, 160, 120, 0.97) 100%);
    color: #5a3a2a;
    padding: 60px 0 30px 0;
    font-family: 'DM Sans', sans-serif;
    margin-top: 60px;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 250px;
    min-width: 220px;
    margin-bottom: 30px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    color: #8b5a3c;
    letter-spacing: 0.04em;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
}


/* Remove bullets e padding dos textos do footer */
.footer-col ul, .footer-col ul li {
        list-style: none;
        padding: 0;
        margin: 0;
}
.footer-col p {
        margin-bottom: 8px;
}

/* Links do footer sem azul e sem sublinhado */
.footer-col a {
        color: inherit !important;
        text-decoration: none !important;
        font-weight: 500;
        transition: color 0.2s;
}
.footer-col a:hover {
        color: #b97a4a !important;
        text-decoration: underline !important;
}


/* Exibe o botão 'Quero ser avisado' apenas quando o usuário está próximo ao rodapé */
.waitlist-widget {
    transition: opacity 0.3s, visibility 0.3s;
}
.waitlist-widget.hide-on-content {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

@media (max-width: 700px) {
    .waitlist-widget {
        right: 12px;
        bottom: 80px;
        align-items: flex-end;
    }
    .waitlist-btn {
        min-width: 170px;
        padding: 10px 18px 10px 14px;
        font-size: 0.96rem;
    }
    .waitlist-btn-text {
        font-size: 0.96rem;
    }
    .waitlist-popup {
        width: min(320px, calc(100vw - 24px));
        min-width: 0;
        max-width: 95vw;
        padding: 18px 18px 16px 18px;
    }
    .waitlist-popup-body form {
        flex-direction: column;
        gap: 10px;
    }
    .waitlist-popup-body input[type="email"],
    .waitlist-popup-body button[type="submit"] {
        width: 100%;
    }
    .waitlist-popup-body button[type="submit"] {
        padding: 10px 14px;
    }
}

.footer-col p {
    margin: 8px 0;
    font-size: 1rem;
    color: #7d5a3a;
    font-family: 'DM Sans', sans-serif;
}

.footer-col p strong {
    color: #b97a4a;
    font-weight: 700;
}

.footer-social {
    margin-top: 16px;
}
.footer-social a {
    display: inline-block;
    margin-right: 12px;
    transition: transform 0.2s, filter 0.2s;
    vertical-align: middle;
}
.footer-social a:hover {
    transform: scale(1.15);
    filter: brightness(0.8) sepia(0.5) saturate(2);
}
.footer-social img {
    width: 32px;
    height: 32px;
    filter: none;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .footer-col {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 30px 10px 20px 10px;
    }
    .footer-col h3 {
        font-size: 1.1rem;
    }
    .footer-col ul li, .footer-col p {
        font-size: 0.95rem;
    }
}

/* Menu fixo no topo */
#navegacao {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;  
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-bottom: 3px solid #ddd;
    padding: 8px 20px;
    z-index: 999;
    font-family: "Baloo2", sans-serif;
    color:  rgba(220, 190, 150, 0.9);
}

#navegacao h1 {
    font-size: 1.05rem;
    margin: 0;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
#navegacao ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 30px;
}

#navegacao ul li a {
    text-decoration: none;
    color:  rgba(220, 190, 150, 0.9);
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

#navegacao ul li a:hover {
    color:  rgba(220, 190, 150, 0.9);
}

@media (max-width: 700px) {
    #navegacao {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        padding: 10px 12px;
        gap: 8px;
    }
    .nav-logo {
        gap: 8px;
        align-items: center;
        width: 100%;
    }
    .nav-icon {
        width: 40px;
        height: 40px;
    }
    #navegacao h1 {
        font-size: 0.95rem;
        line-height: 1.2;
    }
    #navegacao ul {
        flex-wrap: nowrap;
        gap: 8px;
        justify-content: flex-start;
        margin: 8px 0 0 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    #navegacao ul li {
        margin: 0;
    }
    #navegacao ul li a {
        display: inline-block;
        font-size: 0.78rem;
        padding: 6px 8px;
        white-space: nowrap;
    }
}

#navegacao ul li a:hover {
    color: inherit;
}

@media (max-width: 700px) {
    #navegacao {
        padding: 8px 12px;
    }
    #navegacao ul {
        flex-wrap: nowrap;
        gap: 6px;
        overflow-x: hidden;
    }
    #navegacao ul li a {
        font-size: 0.72rem;
        white-space: nowrap;
        padding: 5px 6px;
    }
    .waitlist-widget {
        right: 16px;
        bottom: 90px;
    }
    .waitlist-btn {
        min-width: 180px;
        padding: 12px 20px 12px 14px;
    }
}

html {
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

@media (max-width: 700px) {
    body {
        padding-top: 110px;
    }
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(135deg, rgba(220, 190, 150, 0.9) 0%, rgba(200, 160, 120, 0.9) 100%), url('imagens/blog-gerontologia.png') center/cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
    padding: 100px 40px 60px 40px;
    min-height: 650px;
    width: 100%;
    margin-left: 0;
    font-family: "DM Sans", Sans-serif;
    overflow: visible;
}

.hero-content {
    flex: 0 0 40%;
    text-align: left;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px 30px 30px 40px;
    border-radius: 12px;
    max-width: 480px;
}

.hero-content h2 {
    font-size: 3.5rem;
    color: #5a3a2a;
    margin: 0 0 15px 0;
    font-weight: 700;
    font-family: "Baloo2", sans-serif;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #8b5a3c;
    margin: 0 0 25px 0;
    font-weight: 500;
}

.hero-text {
    font-size: 1.2rem;
    color: #6b4423;
    line-height: 1.8;
    margin: 30px 0 40px 0;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.85);
    padding: 15px 20px 15px 10px;
    border-radius: 8px;
}

.hero-btn {
    display: inline-block;
    padding: 18px 36px;
    background: #d4845c;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.3s ease;
    font-family: "Baloo2", sans-serif;
}

.hero-btn:hover {
    background: #c67244;
}

.hero-image {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
}

.hero-image img {
    max-width: 90%;
    height: auto;
    max-height: 450px;
    border-radius: 16px;
    box-shadow: none;
    opacity: 1;
    padding-right: 0;
    display: flex;
}

.hero-content h2,
.hero-subtitle,
.hero-text {
    color: #4d2b15;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 60px 20px;
        min-height: auto;
        gap: 30px;
        align-items: flex-start;
        background-attachment: scroll;
    }
    .hero-content {
        max-width: 100%;
        width: 100%;
        padding: 24px 10px 24px 10px;
    }
    .hero-image {
        justify-content: center;
        padding-left: 0;
    }
    .hero-image img {
        max-width: 90vw;
        margin: 0 auto;
    }
    .hero-content h2 {
        font-size: 2.2rem;
    }
}
/* ===== Sobre Mim Section ===== */
.sobre-section {
    width: 100%;
    background: #f7ede2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px 0 32px 0;
}
.sobre-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 0 32px;
}
.sobre-texto {
    flex: 1 1 55%;
    color: #5a3a2a;
    font-family: 'DM Sans', sans-serif;
    text-align: justify;
}
.sobre-texto h2 {
    font-size: 2.3rem;
    margin-bottom: 10px;
    color: #8b5a3c;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
}
.sobre-texto h4 {
    font-size: 1.1rem;
    color: #b97a4a;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.sobre-texto p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #6b4423;
    margin: 0;
}
.sobre-imagem {
    flex: 1 1 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.sobre-imagem img {
    max-width: 340px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    object-fit: cover;
}
@media (max-width: 900px) {
    .sobre-container {
        flex-direction: column-reverse;
        gap: 28px;
        padding: 0 10px;
    }
    .sobre-imagem img {
        max-width: 220px;
    }
    .sobre-texto h2 {
        font-size: 1.5rem;
    }
}

/* ===== Termos e Privacidade ===== */
.legal-hero {
    width: 100%;
    margin-left: 0;
    background: linear-gradient(90deg, #f3e6d6 0%, #b97a4a 100%);
    padding: 48px 0 32px 0;
    text-align: center;
    box-shadow: 0 4px 24px rgba(180,140,90,0.10);
    position: relative;
    z-index: 1;
}
.legal-hero h1 {
    color: #fff;
    font-family: 'Baloo2', sans-serif;
    font-size: 2.7rem;
    margin: 0;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 12px rgba(90,40,10,0.10);
}
.legal-back {
    display: inline-block;
    margin: 24px auto 0 auto;
    background: #fff;
    color: #b97a4a;
    border: 2px solid #b97a4a;
    border-radius: 30px;
    padding: 10px 32px;
    font-size: 1.08rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: 0 2px 12px rgba(180,140,90,0.08);
    cursor: pointer;
}
.legal-back:hover {
    background: #b97a4a;
    color: #fff;
    border: 2px solid #b97a4a;
}
.legal-main {
    max-width: 800px;
    margin: 60px auto 40px auto;
    background: #fff9f3;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(180,140,90,0.10);
    padding: 48px 32px 32px 32px;
    font-family: 'DM Sans', sans-serif;
    color: #5a3a2a;
    position: relative;
    z-index: 2;
}
.legal-hero h1 {
    color: #fff;
    font-family: 'Baloo2', sans-serif;
    font-size: 2.7rem;
    margin: 0;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 12px rgba(90,40,10,0.10);
}
.legal-back {
    display: inline-block;
    margin: 24px auto 0 auto;
    background: #fff;
    color: #b97a4a;
    border: 2px solid #b97a4a;
    border-radius: 30px;
    padding: 10px 32px;
    font-size: 1.08rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: 0 2px 12px rgba(180,140,90,0.08);
    cursor: pointer;
}
.legal-back:hover {
    background: #b97a4a;
    color: #fff;
    border: 2px solid #b97a4a;
}
.legal-main {
    max-width: 800px;
    margin: 60px auto 40px auto;
    background: #fff9f3;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(180,140,90,0.10);
    padding: 48px 32px 32px 32px;
    font-family: 'DM Sans', sans-serif;
    color: #5a3a2a;
    position: relative;
    z-index: 2;
}
.legal-main h1 {
    color: #8b5a3c;
    font-family: 'Baloo2', sans-serif;
    font-size: 2.3rem;
    margin-bottom: 24px;
    text-align: center;
}
.legal-main h2 {
    color: #b97a4a;
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 10px;
    font-family: 'Baloo2', sans-serif;
}
.legal-main p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #6b4423;
    margin-bottom: 16px;
}
.legal-footer {
    text-align: center;
    margin: 32px 0 0 0;
    padding: 18px 0 0 0;
    border-top: 1px solid #e5d3c2;
    color: #8b5a3c;
    font-size: 1rem;
}
.legal-footer a {
    color: #b97a4a;
    text-decoration: none;
    margin: 0 8px;
    font-weight: 600;
    transition: color 0.2s;
}
.legal-footer a:hover {
    color: #8b5a3c;
    text-decoration: underline;
}

.help-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.help-header h2 {
  font-size: 2.5rem;
  color: #4a3427;
  margin-bottom: 10px;
  font-family: "Poppins", Sans-serif;
}

.help-header p {
  color: #7e6a5f;
  line-height: 1.6;
  font-family: "Poppins", Sans-serif;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.help-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border 0.3s ease;
  position: relative;
  overflow: hidden;
  gap: 10px;
}

.help-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border: 1px solid rgba(217, 138, 91, 0.3);
}

.help-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4ede6;
  border-radius: 12px;
  font-size: 22px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.help-card:hover .help-icon {
  transform: scale(1.15);
  background: #edd7c3;
}
.help-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(120deg, transparent, rgba(217,138,91,0.1), transparent);
  opacity: 0;
  transition: 0.4s;
}
.help-card:hover::after {
  opacity: 1;
}
.help-card h3 {
  color: #4a3427;
  margin: 10px 0 5px;
  font-size: 1.1rem;
  font-family: "Poppins", Sans-serif;
}

.help-card p {
  color: #7e6a5f;
  font-size: 18px;
  font-family: "Poppins", Sans-serif;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .help-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Whastsapp Widget Section ===== */

.whatsapp-chat {
        position: fixed;
        bottom: 32px;
        right: 24px;
        z-index: 1003;
        font-family: 'DM Sans', sans-serif;
        max-width: 70vw;
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .footer-col {
        min-width: 0;
        width: 100%;
    }
    .whatsapp-chat {
        right: 16px;
        bottom: 24vw;
        max-width: 90vw;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 30px 4px 20px 4px;
    }
    .footer-col h3 {
        font-size: 1.1rem;
    }
    .footer-col ul li, .footer-col p {
        font-size: 0.93rem;
    }
    .footer-container {
        flex-direction: column;
        gap: 18px;
        padding: 0 2px;
    }
    .footer-col {
        width: 100%;
        min-width: 0;
        margin-bottom: 18px;
    }
    .whatsapp-chat {
        right: 10px;
        bottom: 90px;
        max-width: 90vw;
        width: auto;
    }
    .whatsapp-chat iframe,
    .whatsapp-chat > div {
        max-width: 100%;
        width: auto;
    }
}

/* Garante que o WhatsApp não sobreponha o footer */
@media (max-width: 600px) {
    .whatsapp-chat {
        bottom: 100px;
    }
}