:root {
    --primary: #00AEEF; /* Cyan from logo */
    --primary-dark: #0088cc;
    --dark: #1A1A1A; /* Charcoal from logo */
    --dark-accent: #252525;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --gray: #888888;
    --gradient: linear-gradient(135deg, #00AEEF 0%, #0088cc 100%);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .display-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: 0.4s;
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img {
    height: 60px; /* Increased from 45px */
    transition: 0.3s;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

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

/* Buttons */
.btn-pill {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.4s;
    display: inline-block;
    vertical-align: middle;
    text-align: center; /* Centraliza o texto dentro do botão */
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.3);
}

.btn-secondary {
    background: var(--dark);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

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

.btn-block {
    display: block;
    text-align: center;
}

.btn-full {
    width: 100%;
}

/* Hero Modern */
.hero-modern {
    padding: 180px 0 100px;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 174, 239, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.grid-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-display {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-img-cutout {
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

/* Biography Section */
.biography-modern {
    padding: 120px 0;
    background: var(--white);
}

.align-center { align-items: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }

.bio-img-frame {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.bio-img-frame::after {
    content: "";
    position: absolute;
    top: 30px;
    right: 0;
    bottom: 0;
    left: 30px;
    background: var(--primary);
    border-radius: 30px;
    z-index: 0;
}

.bio-img {
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

.bio-content .section-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.bio-text p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 1.05rem;
}

.cert-list {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
}

.cert-list li {
    font-size: 0.9rem;
    font-weight: 600;
}

.cert-list li span {
    display: block;
    color: var(--primary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Confidence Bar */
.confidence-bar {
    background: var(--dark);
    padding: 60px 0;
    color: var(--white);
}

.flex-around {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Services and Plan Modal */
.services {
    padding: 120px 0;
    background: var(--light);
}

.section-subtitle {
    margin-bottom: 60px;
    font-size: 1.2rem;
    color: var(--gray);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.plan-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 40px;
    border: 1px solid #eee;
    transition: 0.5s;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.plan-card.featured {
    background: var(--dark);
    color: var(--white);
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin: 20px 0;
    font-family: 'Outfit', sans-serif;
    display: block;
}

.plan-card.featured .plan-price {
    color: var(--white);
}

.plan-short {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: auto;
}

.plan-card.featured .plan-short {
    color: rgba(255,255,255,0.7);
}

.plan-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-outline-cyan {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-cyan:hover {
    background: var(--primary);
    color: var(--white);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 50px;
    border-radius: 30px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlide 0.4s ease;
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
}

/* Clube da Gestante Section */
.grid-gestante {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.gestante-modern {
    padding: 120px 0;
    background: var(--dark);
    color: var(--white);
}

.gestante-benefits h4 {
    margin: 30px 0 20px;
    color: var(--primary);
}

.check-list-gestante {
    list-style: none;
    margin-bottom: 40px;
}

.check-list-gestante li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.check-list-gestante li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

.gestante-plans-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.gestante-plan-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    min-width: 250px;
}

.price-pill {
    background: rgba(255,255,255,0.05);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.price-pill strong {
    color: var(--primary);
    font-size: 1.5rem;
}

.gestante-visual {
    display: flex;
    justify-content: center;
}

.gestante-img-wrapper {
    max-width: 400px; /* Smaller image as requested */
    width: 100%;
    position: relative;
}

.gestante-img {
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.img-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.5;
}

/* Anamnese Expanded Form */
.anamnese-modern {
    padding: 120px 0;
}

.form-card {
    background: var(--white);
    max-width: 900px;
    margin: 0 auto;
    border-radius: 40px;
    padding: 60px;
    box-shadow: var(--shadow);
}

.form-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    background: #f0f0f0;
    padding: 5px;
    border-radius: 50px;
}

.tab-btn {
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    color: var(--gray);
    flex: 1;
}

.tab-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-dot.hidden {
    display: none;
}

.form-header {
    margin-bottom: 40px;
    text-align: center;
}
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0, 174, 239, 0.1);
    line-height: 1;
}

.radio-group-modern, .checkbox-grid-full, .radio-grid-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
    background: transparent;
    border: none;
}

/* Reusing previous form field styles from Step Id: 125 but refined */
/* selection label specifics to override general .field label styles */
.field .radio-group-modern label, 
.field .checkbox-grid-full label, 
.field .radio-grid-modern label {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500 !important;
    cursor: pointer;
    margin-bottom: 5px !important;
    width: 100% !important; /* Change to 100% to allow text wrapping */
    white-space: normal; /* Allow wrapping on mobile */
    line-height: 1.2;
}

.field .radio-group-modern input, 
.field .checkbox-grid-full input, 
.field .radio-grid-modern input {
    width: 20px !important; /* Fixed size for radio/checkbox */
    height: 20px !important;
    min-width: 20px;
    padding: 0 !important;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0; /* Prevent shrinking */
}

.field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; }
.field input:not([type="radio"]):not([type="checkbox"]), .field textarea { width: 100%; padding: 15px 20px; background: #f9f9f9; border: 1px solid #eee; border-radius: 15px; font-family: inherit; font-size: 1rem; transition: 0.3s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.1); }

/* Range Input Styling */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 5px;
    outline: none;
    margin: 20px 0 10px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .navbar {
        top: 10px;
        width: 95%;
        padding: 10px 20px;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        border-radius: 30px;
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: -1;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .mobile-toggle span {
        width: 25px;
        height: 2px;
        background: var(--dark);
        border-radius: 2px;
        transition: 0.3s;
    }

    .mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .grid-hero, .grid-footer, .grid-2, .grid-gestante {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual, .bio-visual, .gestante-visual {
        order: -1;
    }
}

/* Form Step Visibility */
.form-step-box {
    display: none;
    opacity: 0;
}

.form-step-box.active {
    display: block;
    opacity: 1;
    animation: fadeInStep 0.4s ease-out forwards;
}

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

/* Modal List Styling */
/* Modal List Styling */
.modal-list {
    list-style: none;
    margin-top: 20px;
}

.modal-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.modal-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
}

/* Footer Modern */
.footer-modern {
    background: #111;
    color: var(--white);
    padding: 80px 0 40px;
}

.grid-footer {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 25px;
}

.footer-brand p {
    color: var(--gray);
    margin-bottom: 20px;
    max-width: 300px;
    font-size: 0.9rem;
}

.footer-links h4, .footer-cta h4 {
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.instagram-link:hover {
    color: var(--primary-dark);
}

.instagram-link svg {
    width: 18px;
    height: 18px;
}

.footer-links a:hover {
    color: var(--primary);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.footer-legal {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Floating WhatsApp Trigger */
.whatsapp-float-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1999;
    background: #25D366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    border: none;
    outline: none;
}

.whatsapp-float-trigger:hover {
    transform: scale(1.1) rotate(10deg);
    background: #20ba59;
}

.whatsapp-notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff3b30;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Chatbot Container */
.whatsapp-chatbot-container {
    display: none;
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 380px;
    height: 520px;
    max-height: calc(100vh - 140px);
    background: #FFFFFF;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    z-index: 1999;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.whatsapp-chatbot-container.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Chat Header */
.chat-header {
    background: var(--dark);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.chat-avatar-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    object-fit: contain;
    padding: 2px;
    border: 2px solid var(--primary);
}

.chat-status-info {
    display: flex;
    flex-direction: column;
}

.chat-name {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
}

.chat-status {
    color: var(--gray);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
    animation: blinkDot 1.5s infinite;
}

@keyframes blinkDot {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.chat-close-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
    line-height: 1;
}

.chat-close-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Chat Body */
.chat-body {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    background: #F4F6F9;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scroll-behavior: smooth;
}

/* Chat Messages */
.chat-msg {
    max-width: 80%;
    padding: 14px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    line-height: 1.4;
    animation: msgIn 0.3s ease forwards;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

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

.chat-msg.bot {
    background: var(--white);
    color: var(--dark);
    align-self: flex-start;
    border-top-left-radius: 5px;
}

.chat-msg.user {
    background: var(--primary);
    color: var(--white);
    align-self: flex-end;
    border-top-right-radius: 5px;
}

/* Typing Indicator */
.chat-msg.typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 18px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--gray);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Chat Options / Buttons */
.chat-options {
    padding: 10px 20px 0;
    background: #F4F6F9;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.chat-option-btn {
    background: var(--white);
    border: 1px solid rgba(0, 174, 239, 0.2);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.chat-option-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.2);
}

.chat-option-btn.final-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
    font-size: 1rem;
    width: 100%;
    text-align: center;
    font-weight: 700;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}

.chat-option-btn.final-whatsapp:hover {
    background: #20ba59;
    border-color: #20ba59;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

/* Chat Footer / Input */
.chat-footer {
    background: #F4F6F9;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-bottom: 20px;
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: #F4F6F9;
}

.chat-input-wrapper input {
    flex: 1;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 0.9rem;
    outline: none;
    font-family: inherit;
    transition: 0.3s;
    background: var(--white);
}

.chat-input-wrapper input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
}

.chat-send-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.2);
}

.chat-send-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Responsive Chat Widget */
@media (max-width: 480px) {
    .whatsapp-chatbot-container {
        right: 15px;
        left: 15px;
        bottom: 15px;
        width: auto;
        height: 460px;
        max-height: 75vh;
        border-radius: 24px;
    }
    
    .chat-footer {
        border-radius: 24px;
        padding-bottom: 15px;
    }
    
    .chat-input-wrapper {
        padding-bottom: 0px;
    }
}

/* Pulse attention style for input */
@keyframes inputPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(0, 174, 239, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 174, 239, 0); }
}

.chat-input-wrapper.attention input {
    animation: inputPulse 1.8s infinite;
    border-color: var(--primary) !important;
    background: var(--white) !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .grid-footer {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto 30px;
    }
    
    .footer-cta {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
}

/* ==========================================
   COOKIE CONSENT BANNER (LGPD)
   ========================================== */
.cookie-banner-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    width: 90%;
    max-width: 850px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 20px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    z-index: 2500;
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease;
    pointer-events: none;
}

.cookie-banner-container.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-banner-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-content a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
    transition: 0.3s;
}

.cookie-banner-content a:hover {
    color: var(--primary-dark);
}

.cookie-banner-content button {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .cookie-banner-container {
        padding: 20px;
        bottom: 20px;
    }
}

/* ==========================================
   PÁGINA DE POLÍTICA DE PRIVACIDADE
   ========================================== */
.policy-body {
    background-color: var(--light);
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

.policy-header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 15px 0;
}

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

.policy-main-content {
    padding: 130px 0 60px;
}

.container-policy-card {
    max-width: 900px;
}

.policy-card {
    background: var(--white);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow);
}

.policy-card h1 {
    font-size: 2.2rem;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 10px;
}

.policy-date {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.policy-intro {
    font-size: 1.05rem;
    color: #4A5568;
    margin-bottom: 30px;
}

.policy-divider {
    border: 0;
    height: 1px;
    background: #E2E8F0;
    margin: 30px 0;
}

.policy-section {
    margin-bottom: 35px;
}

.policy-section h2 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-section p {
    color: #4A5568;
    margin-bottom: 15px;
}

.policy-section ul, .policy-section ol {
    padding-left: 20px;
    margin-bottom: 15px;
    color: #4A5568;
}

.policy-section li {
    margin-bottom: 10px;
}

.policy-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.policy-section a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .policy-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .policy-card h1 {
        font-size: 1.8rem;
    }
    .policy-main-content {
        padding: 110px 0 40px;
    }
}

/* ==========================================
   TELA DE SUCESSO DO FORMULÁRIO DE ANAMNESE
   ========================================== */
.form-success-container {
    text-align: center;
    padding: 60px 20px;
    animation: msgIn 0.5s ease forwards;
}

.form-success-container h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-top: 25px;
    font-weight: 700;
}

.form-success-container p {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 520px;
    margin: 15px auto 35px;
    line-height: 1.6;
}

.success-icon-wrapper {
    display: inline-block;
    margin: 0 auto;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--primary);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--primary);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--primary);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: var(--primary);
    stroke-width: 3;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 40px rgba(0, 174, 239, 0.08);
    }
}
