    /* ==========================================================================
       RESSIGNIFICAR - CSS REFATORADO
       Clínica de Reabilitação - Camaragibe, PE
       ========================================================================== */
    
    /* ==========================================================================
       RESET E CONFIGURAÇÕES GLOBAIS
       ========================================================================== */
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    :root {
        /* Paleta de Cores */
        --primary-color: #02814a;
        --primary-dark: #026b3e;
        --primary-light: #4db372;
        --accent-light: #b3e5c7;
        --footer-dark: #023d2a;
        --footer-darker: #012f20;
        
        /* Cores Neutras */
        --white: #ffffff;
        --text-dark: #333333;
        --text-light: #666666;
        --gray-light: #f8f9fa;
        --border-light: #e0e0e0;
        
        /* Tipografia */
        --font-family: "Poppins", sans-serif;
        --font-size-base: 1rem;
        --font-size-large: 1.1rem;
        --font-size-h1: 2.75rem;
        --font-size-h2: 2.5rem;
        --font-size-h3: 1.3rem;
        
        /* Espaçamento */
        --spacing-xs: 0.5rem;
        --spacing-sm: 1rem;
        --spacing-md: 2rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --spacing-section: 80px;
        
        /* Outros */
        --border-radius: 10px;
        --border-radius-full: 50px;
        --transition: all 0.3s ease;
        --shadow-light: 0 5px 15px rgba(0,0,0,0.1);
        --shadow-medium: 0 10px 25px rgba(0,0,0,0.15);
    }
    
    body {
        font-family: var(--font-family);
        line-height: 1.6;
        color: var(--text-dark);
        padding-top: 80px;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* ==========================================================================
       HEADER E NAVEGAÇÃO
       ========================================================================== */
    
    header {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: var(--white);
        padding: var(--spacing-sm) 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-light);
    }
    
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        font-size: 1.8rem;
        font-weight: bold;
    }
    
    .logo-nav {
        height: 50px;
    }
    
    .nav-links {
        display: flex;
        list-style: none;
        gap: var(--spacing-md);
        align-items: center;
        font-weight: 600;
        margin-bottom: 0;
    }
    
    .nav-links a {
        color: var(--white);
        text-decoration: none;
        transition: var(--transition);
    }
    
    .nav-links a:hover {
        color: var(--primary-light);
    }
    
    /* ==========================================================================
       SEÇÃO HERO
       ========================================================================== */
    
    .hero {
        background: linear-gradient(rgba(2, 129, 74, 0.4), rgba(2, 107, 62, 0.8)), url('../img/hero-bg.webp');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        color: var(--white);
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        margin-top: -80px;
        padding-top: 80px;
    }
    
    .hero-content {
        max-width: 800px;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-logo {
        margin-bottom: 1.5rem;
    }
    
    .logo-image {
        max-width: 400px;
        height: auto;
        filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
    }
    
    .hero h1 {
        font-size: var(--font-size-h1);
        font-weight: 600;
        margin-bottom: var(--spacing-sm);
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
        font-weight: 500;
        margin-bottom: 1.5rem;
        color: var(--accent-light);
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-md);
        line-height: 1.6;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    
    /* ==========================================================================
       BOTÕES
       ========================================================================== */
    
    .cta-button {
        display: inline-block;
        background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
        color: var(--white);
        padding: 15px 30px;
        text-decoration: none;
        border-radius: var(--border-radius-full);
        font-weight: bold;
        transition: var(--transition);
        text-shadow: none;
        min-width: 250px;
        text-align: center;
    }
    
    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(2, 129, 74, 0.3);
        color: var(--white);
        text-decoration: none;
    }
    
    .cta-button.blue {
        background: linear-gradient(45deg, var(--primary-dark), #014d2d);
    }
    
    .submit-btn {
        background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
        color: var(--white);
        padding: 12px 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: var(--font-size-base);
        transition: var(--transition);
    }
    
    .submit-btn:hover {
        transform: translateY(-2px);
    }
    
    /* Seção de botão de ação */
    .section-cta {
        text-align: center;
        margin-top: 2.5rem;
        padding-top: 1.5rem;
        border-top: 2px solid var(--accent-light);
    }
    
    /* ==========================================================================
       SEÇÕES PRINCIPAIS
       ========================================================================== */
    
    .section-header {
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
    
    .section-header h2 {
        font-size: var(--font-size-h2);
        color: var(--primary-color);
        margin-bottom: var(--spacing-sm);
        font-weight: 700;
    }
    
    .section-header p {
        font-size: var(--font-size-large);
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Stats Section */
    .stats {
        background: var(--white);
        padding: 60px 0;
        text-align: center;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--spacing-md);
        margin-top: var(--spacing-md);
        border-top: 2px solid var(--primary-color);
        border-bottom: 2px solid var(--primary-color);
        border-radius: 5px;
        background: rgba(2, 129, 74, 0.05);
    }
    
    .stat-item {
        padding: var(--spacing-sm);
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: bold;
        color: var(--primary-color);
        display: block;
    }
    
    .stat-label {
        color: var(--text-light);
        margin-top: var(--spacing-xs);
    }
    
    /* About Section */
    .about {
        padding: var(--spacing-section) 0;
        background: var(--gray-light);
    }
    
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
        align-items: center;
    }
    
    .about-text p {
        font-size: var(--font-size-large);
        margin-bottom: var(--spacing-sm);
        color: #555;
    }
    
    .about-features {
        list-style: none;
        margin-top: var(--spacing-md);
    }
    
    .about-features li {
        padding: var(--spacing-xs) 0;
        padding-left: var(--spacing-md);
        position: relative;
    }
    
    .about-features li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: bold;
    }
    
    .about-image {
        height: 400px;
        border-radius: var(--border-radius);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--primary-color);
    }
    
    /* Services Section */
    .services {
        padding: var(--spacing-section) 0;
        background: var(--white);
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
        justify-self: center;
    }
    
    .service-card {
        background: var(--white);
        padding: var(--spacing-md);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-light);
        transition: var(--transition);
        text-align: center;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-medium);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto var(--spacing-sm);
        font-size: 1.5rem;
        color: var(--white);
    }
    
    .service-card h3 {
        color: var(--primary-color);
        margin-bottom: var(--spacing-sm);
        font-size: var(--font-size-h3);
    }
    
    .service-card p {
        color: var(--text-light);
        line-height: 1.6;
    }
    
    /* Specialties Section */
    .specialties {
        padding: var(--spacing-section) 0;
        background: var(--gray-light);
    }
    
    .specialties-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }
    
    .specialty-card {
        background: var(--white);
        padding: var(--spacing-md);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-light);
        border-left: 4px solid var(--primary-color);
    }
    
    .specialty-card h3 {
        color: var(--primary-color);
        margin-bottom: var(--spacing-sm);
    }
    
    /* Health Plans Section */
    .health-plans {
        padding: var(--spacing-section) 0;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: var(--white);
        text-align: center;
    }
    
    .health-plans h2 {
        font-size: var(--font-size-h2);
        margin-bottom: var(--spacing-sm);
        font-weight: 700;
    }
    
    .health-plans p {
        font-size: var(--font-size-large);
        margin-bottom: var(--spacing-md);
        opacity: 0.9;
    }
    
    .health-plans-icons {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
        gap: 1.5rem;
        margin: var(--spacing-md) 0;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .plan-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: var(--spacing-sm);
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--border-radius);
        backdrop-filter: blur(10px);
        transition: var(--transition);
        background: white;
        justify-content: center;
    }
    
    .plan-item:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.15);
    }
    
    .plan-icon-simple {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
    }
    
    .plan-item span {
        color: var(--white);
        font-size: var(--font-size-base);
        font-weight: 500;
    }
    
    .plan-icon-img{
        width: 100%;
    }
    
    /* CTA Section */
    .cta-section {
        background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
        color: var(--white);
        padding: 60px 0;
        text-align: center;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
        margin-bottom: var(--spacing-sm);
        font-weight: 700;
    }
    
    .cta-section p {
        font-size: var(--font-size-large);
        margin-bottom: var(--spacing-md);
        opacity: 0.9;
    }
    
    /* Contact Section */
    .contact {
        padding: var(--spacing-section) 0;
        background: var(--white);
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
        margin-top: var(--spacing-md);
    }
    
    .contact-info {
        background: var(--gray-light);
        padding: var(--spacing-md);
        border-radius: var(--border-radius);
        border-left: 5px solid var(--primary-color);
    }
    
    .contact-info h3 {
        color: var(--primary-color);
        margin-bottom: var(--spacing-md);
        font-size: 1.5rem;
        text-align: center;
        border-bottom: 2px solid var(--accent-light);
        padding-bottom: 1rem;
    }
    
    .contact-detail {
        background: var(--white);
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-light);
        border-left: 3px solid var(--primary-color);
        transition: var(--transition);
    }

    .contact-detail:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }

    .contact-detail-header {
        display: flex;
        align-items: center;
        margin-bottom: 0.8rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        font-size: 1.2rem;
    }

    .contact-detail h4 {
        color: var(--primary-color);
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .contact-detail p {
        margin: 0.5rem 0 0 0;
        color: var(--text-light);
        line-height: 1.5;
    }

    .contact-detail-content {
        margin-left: 56px;
    }

    .emergency-highlight {
        background: linear-gradient(45deg, #e8f5e8, var(--accent-light));
        border-left-color: #FF6B6B;
    }

    .emergency-highlight .contact-icon {
        background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
        animation: pulse-emergency 2s infinite;
    }

    @keyframes pulse-emergency {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }
    
    .contact-info p {
        margin-bottom: var(--spacing-xs);
        color: var(--text-light);
    }
    
    .contact-form {
        background: var(--gray-light);
        padding: var(--spacing-md);
        border-radius: var(--border-radius);
    }
    
    .form-group {
        margin-bottom: var(--spacing-sm);
    }
    
    .form-group label {
        display: block;
        margin-bottom: var(--spacing-xs);
        color: var(--primary-color);
        font-weight: bold;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 2px solid var(--border-light);
        border-radius: 5px;
        font-size: var(--font-size-base);
        transition: var(--transition);
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-color);
    }
    
    /* Mapa */
    .mapa-container {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding-bottom: 56.25%;
        height: 0;
    }
    
    .mapa-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    
    /* ==========================================================================
       CAROUSEL
       ========================================================================== */
    
    .carousel-item img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: var(--border-radius);
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        filter: invert(1);
    }
    
    .carousel-indicators button {
        background-color: var(--white);
    }
    
    .carousel-caption {
        position: absolute;
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 12px 15px;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 8px;
        color: var(--white);
        text-align: center;
    }
    
    .carousel-caption h5 {
        font-size: var(--font-size-base);
        margin-bottom: 5px;
        font-weight: 600;
    }
    
    .carousel-caption p {
        font-size: 0.85rem;
        margin-bottom: 0;
        opacity: 0.9;
    }
    
    /* ==========================================================================
       FOOTER
       ========================================================================== */
    
    .footer {
        background: linear-gradient(135deg, var(--footer-dark) 0%, var(--footer-darker) 100%);
        color: var(--white);
        padding: 60px 0 30px;
    }
    
    .footer-logo {
        height: 75px;
        width: auto;
        filter: brightness(1.2);
        margin-bottom: 30px;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px;
    }
    
    .footer-section h3 {
        color: var(--primary-light);
        margin-bottom: 20px;
        font-size: var(--font-size-h3);
        font-weight: 600;
    }
    
    .footer-section p,
    .footer-section li {
        margin-bottom: 10px;
        line-height: 1.6;
        color: var(--accent-light);
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-section a {
        color: var(--accent-light);
        text-decoration: none;
        transition: var(--transition);
    }
    
    .footer-section a:hover {
        color: var(--primary-light);
    }
    
    .footer-logo-container {
        place-self: center;
    }
    
    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
        justify-content: center;
    }
    
    .social-link {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        text-decoration: none;
        backdrop-filter: blur(10px);
    }
    
    .social-link:hover {
        background: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(2, 129, 74, 0.3);
    }
    
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 30px;
        text-align: center;
        color: var(--accent-light);
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* ==========================================================================
       BOTÕES FLUTUANTES
       ========================================================================== */
    
    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        background-color: #25D366;
        color: var(--white);
        border-radius: 50%;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 1000;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    
    .whatsapp-float:hover {
        background-color: #20c157;
        transform: scale(1.1);
        box-shadow: 3px 3px 5px #666;
    }
    
    .whatsapp-float::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border: 2px solid #25D366;
        border-radius: 50%;
        animation: pulse 1.5s infinite;
        opacity: 0.5;
    }
    
    .phone-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 90px;
        right: 20px;
        background-color: #dddd00;
        color: var(--white);
        border-radius: 50%;
        text-align: center;
        font-size: 24px;
        box-shadow: 2px 2px 3px #999;
        z-index: 1000;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    
    .phone-float:hover {
        background-color: #afaf00;
        transform: scale(1.1);
        box-shadow: 3px 3px 5px #666;
        color: var(--white);
        text-decoration: none;
    }
    
    .phone-float::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border: 2px solid var(--primary-color);
        border-radius: 50%;
        animation: phone-pulse 2s infinite;
        opacity: 0.5;
    }
    
    /* ==========================================================================
       ANIMAÇÕES
       ========================================================================== */
    
    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 0.5;
        }
        50% {
            transform: scale(1.1);
            opacity: 0.3;
        }
        100% {
            transform: scale(1.2);
            opacity: 0;
        }
    }
    
    @keyframes phone-pulse {
        0% {
            transform: scale(1);
            opacity: 0.5;
        }
        50% {
            transform: scale(1.1);
            opacity: 0.3;
        }
        100% {
            transform: scale(1.2);
            opacity: 0;
        }
    }
    
    /* Notificações */
    .form-notification {
        margin-bottom: var(--spacing-sm);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        animation: slideInFromTop 0.3s ease-out;
    }
    
    .form-notification.success {
        background: linear-gradient(45deg, #10b981, #059669);
        color: var(--white);
    }
    
    .form-notification.error {
        background: linear-gradient(45deg, #ef4444, #dc2626);
        color: var(--white);
    }
    
    .notification-content {
        padding: 12px 16px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .notification-icon {
        font-size: 1.2rem;
        font-weight: bold;
        min-width: 20px;
    }
    
    .notification-message {
        flex: 1;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .notification-close {
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.4rem;
        cursor: pointer;
        padding: 0;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background-color 0.2s;
    }
    
    .notification-close:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    @keyframes slideInFromTop {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* ==========================================================================
       RESPONSIVIDADE - MOBILE
       ========================================================================== */
    
    @media (max-width: 768px) {
        :root {
            --font-size-h1: 1.8rem;
            --font-size-h2: 2rem;
            --spacing-section: 60px;
        }
    
        /* Header Mobile */
        header {
            position: static;
            width: 100%;
            box-shadow: var(--shadow-light);
        }
        
        body {
            padding-top: 0;
        }
        
        nav {
            justify-content: center;
            padding: 0 15px;
        }
        
        .logo {
            text-align: center;
            font-size: 1.4rem;
        }
        
        .logo-nav {
            height: 40px;
        }
        
        .nav-links {
            display: none;
        }
    
        /* Hero Mobile */
        .hero {
            margin-top: 0;
            padding-top: 20px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-attachment: scroll
        }
        
        .hero-content {
            padding: 20px 15px;
            margin-top: 0;
        }
        
        .logo-image {
            max-width: 220px;
        }
        
        .hero h1 {
            line-height: 1.3;
        }
        
        .hero-buttons {
            margin-top: 1.5rem;
        }
        
        .cta-button {
            min-width: 220px;
            padding: 12px 25px;
            font-size: 0.95rem;
        }
    
        /* Grids Mobile */
        .about-content,
        .contact-grid {
            grid-template-columns: 1fr;
            gap: var(--spacing-md);
        }
    
        .services-grid,
        .specialties-grid {
            grid-template-columns: 1fr;
        }
    
        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    
        /* Carousel Mobile */
        .carousel-caption.d-none.d-md-block {
            display: block !important;
        }
        
        .carousel-item img {
            height: 300px;
        }
        
        .about-image {
            margin-top: 20px;
        }
    
        /* Health Plans Mobile */
        .health-plans-icons {
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: var(--spacing-sm);
        }
        
        .plan-item {
            padding: 0.8rem;
            gap: 0.6rem;
        }
        
        .plan-icon-simple {
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
        }
        
        .plan-item span {
            font-size: 0.9rem;
        }
        .plan-icon-img {
            height: 50px;
            width: auto;
        }
    
        /* Floating Buttons Mobile */
        .whatsapp-float {
            bottom: 20px;
            right: 15px;
            width: 55px;
            height: 55px;
        }
        
        .phone-float {
            bottom: 85px;
            right: 15px;
            width: 55px;
            height: 55px;
            font-size: 22px;
            background-color: #dddd00;
        }
        .section-cta {
            margin-top: 2rem;
            padding-top: 1rem;
        }
        .contact-form form{
            text-align: center;
        }
    }
    
    /* ==========================================================================
       ESTILOS ADICIONAIS PARA FORMULÁRIO DE CONTATO
       ========================================================================== */
    
    /* Notificações */
    .form-notification {
        margin-bottom: var(--spacing-sm);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        animation: slideInFromTop 0.3s ease-out;
    }
    
    .form-notification.success {
        background: linear-gradient(45deg, #10b981, #059669);
        color: var(--white);
    }
    
    .form-notification.error {
        background: linear-gradient(45deg, #ef4444, #dc2626);
        color: var(--white);
    }
    
    .notification-content {
        padding: 12px 16px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .notification-icon {
        font-size: 1.2rem;
        font-weight: bold;
        min-width: 20px;
    }
    
    .notification-message {
        flex: 1;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .notification-close {
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.4rem;
        cursor: pointer;
        padding: 0;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background-color 0.2s;
    }
    
    .notification-close:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    
    /* Contador de caracteres */
    .char-counter {
        font-size: 0.8rem;
        color: var(--text-light);
        text-align: right;
        margin-top: 5px;
        transition: color 0.3s ease;
    }
    
    /* Estados do botão de envio */
    .submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none !important;
    }
    
    /* Estilos para campos com erro */
    .form-group input.error,
    .form-group textarea.error {
        border-color: #ef4444;
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    }
    
    /* Loading state para o botão */
    .submit-btn.loading::after {
        content: '';
        width: 16px;
        height: 16px;
        border: 2px solid transparent;
        border-top: 2px solid currentColor;
        border-radius: 50%;
        display: inline-block;
        margin-left: 10px;
        animation: spin 1s linear infinite;
    }
    
    /* Animações */
    @keyframes slideInFromTop {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }
    
    /* Melhorias no formulário */
    .form-group input:valid,
    .form-group textarea:valid {
        border-color: var(--primary-color);
    }
    
    .form-group input:invalid:not(:placeholder-shown),
    .form-group textarea:invalid:not(:placeholder-shown) {
        border-color: #ef4444;
    }
    
    /* Tooltip para ajuda */
    .form-tooltip {
        position: relative;
        display: inline-block;
        cursor: help;
        margin-left: 5px;
        color: var(--primary-color);
    }
    
    .form-tooltip::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 125%;
        left: 50%;
        transform: translateX(-50%);
        background: var(--text-dark);
        color: var(--white);
        padding: 6px 8px;
        border-radius: 4px;
        font-size: 0.8rem;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .form-tooltip:hover::after {
        opacity: 1;
        visibility: visible;
    }
    
    /* Responsividade para notificações */
    @media (max-width: 768px) {
        .form-notification {
            margin: 0 -15px var(--spacing-sm) -15px;
            border-radius: 0;
        }
        
        .notification-content {
            padding: 12px 15px;
        }
        
        .notification-message {
            font-size: 0.85rem;
        }
    }
    
    /* ==========================================================================
   TESTIMONIALS SECTION - Seguindo padrão do site
   ========================================================================== */

.testimonials {
    padding: var(--spacing-section) 0;
    background: var(--white);
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-content {
    background: var(--gray-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin: 0 20px;
    border-left: 4px solid var(--primary-color);
    position: relative;
    transition: var(--transition);
}

.testimonial-content:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.testimonial-quote {
    margin-bottom: var(--spacing-md);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.6;
    line-height: 1;
    position: absolute;
    top: -10px;
    left: -15px;
    font-weight: bold;
}

.testimonial-quote p {
    font-size: var(--font-size-large);
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
    padding-left: 30px;
    font-style: italic;
}

.testimonial-author {
    border-top: 2px solid var(--accent-light);
    padding-top: var(--spacing-sm);
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-h3);
    font-weight: 600;
}

.author-location {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.recovery-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: var(--spacing-xs);
}

.recovery-badge.family {
    background: linear-gradient(45deg, #6b46c1, #9333ea);
}

/* Controles do carousel - seguindo padrão do site */
.testimonials .carousel-control-prev-icon,
.testimonials .carousel-control-next-icon {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.testimonials .carousel-indicators {
    bottom: -50px;
}

.testimonials .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-light);
    opacity: 0.5;
    border: none;
}

.testimonials .carousel-indicators button.active {
    background-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.2);
}

/* Responsividade seguindo padrão do site */
@media (max-width: 768px) {
    .testimonial-content {
        margin: 0 10px;
        padding: var(--spacing-md);
    }
    
    .quote-icon {
        font-size: 2.5rem;
        top: -8px;
        left: -10px;
    }
    
    .testimonial-quote p {
        font-size: var(--font-size-base);
        padding-left: 25px;
        line-height: 1.6;
    }
    
    .recovery-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .testimonials .carousel-indicators {
        bottom: -40px;
    }
}

@media (max-width: 576px) {
    .testimonial-content {
        margin: 0 5px;
        padding: var(--spacing-sm);
    }
    
    .quote-icon {
        font-size: 2rem;
        top: -5px;
        left: -8px;
    }
    
    .testimonial-quote p {
        padding-left: 20px;
        font-size: 0.95rem;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   SEÇÃO ACOMPANHAMENTO TERAPÊUTICO - NOVA FUNCIONALIDADE
   ========================================================================== */

.therapeutic-evolution {
    margin-top: var(--spacing-xl);
    background: linear-gradient(135deg, var(--gray-light) 0%, #f0f9f4 100%);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    border: 2px solid var(--accent-light);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.therapeutic-evolution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
}

.evolution-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.evolution-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.evolution-content p {
    font-size: var(--font-size-large);
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.evolution-content p strong {
    color: var(--primary-color);
    font-weight: 600;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-evaluation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-light);
}

.team-member {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
    cursor: default;
}

.team-member:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
    border-left-color: var(--primary-light);
}

.professional-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(2, 129, 74, 0.2);
}

.professional-title {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    flex: 1;
}

.evolution-description {
    font-size: var(--font-size-base) !important;
    color: var(--text-light) !important;
    font-style: italic;
    background: var(--white);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-light);
    margin-top: var(--spacing-md) !important;
}

/* Animação para destacar a importância */
@keyframes highlight-evolution {
    0%, 100% { 
        box-shadow: var(--shadow-medium);
    }
    50% { 
        box-shadow: 0 15px 35px rgba(2, 129, 74, 0.2);
        transform: translateY(-1px);
    }
}

.therapeutic-evolution:hover {
    animation: highlight-evolution 2s ease-in-out infinite;
}

/* Estados de interação */
.team-member:nth-child(1) {
    animation-delay: 0.1s;
}

.team-member:nth-child(2) {
    animation-delay: 0.2s;
}

.team-member:nth-child(3) {
    animation-delay: 0.3s;
}

.team-member:nth-child(4) {
    animation-delay: 0.4s;
}

.team-member:nth-child(5) {
    animation-delay: 0.5s;
}

/* Responsividade para a nova seção */
@media (max-width: 768px) {
    .therapeutic-evolution {
        margin-top: var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .evolution-header h3 {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .evolution-content p {
        font-size: var(--font-size-base);
        text-align: left;
    }
    
    .team-evaluation {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
        padding: var(--spacing-sm);
    }
    
    .team-member {
        padding: 0.75rem;
        gap: 0.6rem;
    }
    
    .professional-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .professional-title {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .evolution-description {
        font-size: 0.9rem !important;
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .therapeutic-evolution {
        padding: var(--spacing-sm);
        margin-left: -10px;
        margin-right: -10px;
        border-radius: 0;
    }
    
    .team-evaluation {
        padding: var(--spacing-xs);
        margin: var(--spacing-sm) -10px;
    }
    
    .team-member {
        padding: 0.6rem;
        margin: 0 -5px;
    }
    
    .evolution-description {
        margin-left: -10px;
        margin-right: -10px;
        border-radius: 0;
    }
}

/* Efeito especial para destacar o diferencial */
.therapeutic-evolution::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.therapeutic-evolution:hover::after {
    left: 100%;
}

/* Ajuste da descrição do stat-item para acomodar o novo texto */
.stat-description {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    line-height: 1.4;
    font-style: italic;
    padding: 0 0.5rem;
}