      :root {
            --primary: #0a192f;
            --secondary: #112240;
            --accent: #64ffda;
            --accent-light: #8affdf;
            --text: #e6f1ff;
            --text-light: #8892b0;
            --light: #f8f9fa;
            --success: #4dc247;
            --gradient: linear-gradient(135deg, #0a192f 0%, #112240 50%, #1a365d 100%);
            --gradient-accent: linear-gradient(135deg, #64ffda 0%, #8affdf 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--primary);
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(100, 255, 218, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(100, 255, 218, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 50% 50%, rgba(10, 25, 47, 0.8) 0%, transparent 50%);
            z-index: -1;
        }
        
        /* Efeito de partículas */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        /* Container principal */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            font-size: 42px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 80px;
            color: var(--text);
            position: relative;
            font-family: 'Montserrat', sans-serif;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: var(--gradient-accent);
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        /* Header avançado */
        header {
            background-color: rgba(10, 25, 47, 0.95);
            position: fixed;
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(100, 255, 218, 0.1);
            transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        }
        
        header.scrolled {
            background-color: rgba(10, 25, 47, 0.98);
            padding: 5px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 0;
            transition: all 0.4s ease;
        }
        
        .logo {
            width: 100px;
            height: auto;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 35px;
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            letter-spacing: 0.5px;
            padding: 10px 0;
        }
        
        nav ul li a:hover {
            color: var(--accent);
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent);
            bottom: 0;
            left: 0;
            transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        /* Botão CTA avançado */
        .cta-button {
            background: var(--gradient-accent);
            color: var(--primary);
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: none;
            cursor: pointer;
            font-size: 15px;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .cta-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #8affdf 0%, #64ffda 100%);
            z-index: -1;
            transition: opacity 0.4s ease;
            opacity: 1;
        }
        
        .cta-button:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary);
            z-index: -1;
            transition: transform 0.4s ease;
            transform: scaleX(0);
            transform-origin: right;
            border-radius: 50px;
        }
        
        .cta-button:hover {
            color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4);
        }
        
        .cta-button:hover:after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        .mobile-menu {
            display: none;
            margin-right: 20px;
            font-size: 35px;
            cursor: pointer;
            color: var(--text);
            z-index: 1001;
        }
        
        /* Hero Section com efeitos impressionantes */
        .hero {
            padding: 200px 0 150px;
            position: relative;
            overflow: hidden;
            background: var(--gradient);
        }
        
        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-content {
            flex: 1;
            padding-right: 60px;
            position: relative;
            z-index: 2;
        }
        
        .hero-image {
            flex: 1;
            position: relative;
            z-index: 1;
            perspective: 1600px;
        }
        
        .hero-image-container {
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
            transform: rotateY(-10deg) rotateX(5deg);
        }
        
        .hero-image-container:hover {
            transform: rotateY(-5deg) rotateX(3deg);
        }
        
        .hero-image img {
            width: 100%;
            max-width: 620px;
            border-radius: 20px;
            box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.4),
                        0 18px 36px -18px rgba(0, 0, 0, 0.5);
            transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
            position: relative;
            z-index: 2;
            border: 1px solid rgba(100, 255, 218, 0.2);
        }
        
        .hero-image-shadow {
            position: absolute;
            width: 90%;
            height: 90%;
            background: var(--accent);
            opacity: 0.15;
            filter: blur(30px);
            bottom: -15px;
            left: 5%;
            border-radius: 20px;
            z-index: 1;
            transform: translateZ(-20px);
            transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
        }
        
        .hero-image-container:hover .hero-image-shadow {
            transform: translateZ(-15px) scale(1.05);
            opacity: 0.2;
        }
        
        .hero-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 60px;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 25px;
            line-height: 1.1;
            letter-spacing: -1px;
        }
        
        .hero-title span {
            color: var(--accent);
            position: relative;
            display: inline-block;
        }
        
        .hero-title span:after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: rgba(100, 255, 218, 0.25);
            z-index: -1;
            transition: all 0.3s ease;
        }
        
        .hero-title:hover span:after {
            height: 12px;
            bottom: 2px;
        }
        
        .hero-subtitle {
            font-size: 22px;
            color: var(--text-light);
            margin-bottom: 40px;
            max-width: 520px;
            font-weight: 500;
            line-height: 1.7;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .secondary-button {
            background-color: transparent;
            color: var(--accent);
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: 2px solid var(--accent);
            cursor: pointer;
            font-size: 15px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }
        
        .secondary-button:hover {
            background-color: rgba(100, 255, 218, 0.08);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(100, 255, 218, 0.1);
        }
        
        .stats {
            display: flex;
            margin-top: 60px;
            gap: 40px;
        }
        
        .stat-item {
            position: relative;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 900;
            color: var(--accent);
            margin-bottom: 8px;
            line-height: 1;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }
        
        /* Efeitos decorativos animados */
        .hero-deco {
            position: absolute;
            z-index: 0;
            opacity: 0.5;
            filter: blur(60px);
        }
        
        .deco-1 {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--accent) 0%, rgba(100, 255, 218, 0) 70%);
            top: -100px;
            right: -100px;
            animation: float 8s ease-in-out infinite;
        }
        
        .deco-2 {
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--primary) 0%, rgba(10, 25, 47, 0) 70%);
            bottom: -200px;
            left: -200px;
            animation: float 10s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(3deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }
        
        /* Serviços Section com design avançado */
        .services {
            background-color: var(--secondary);
            position: relative;
            overflow: hidden;
        }
        
        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(100, 255, 218, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
            z-index: 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }
        
        .service-card {
            background: rgba(17, 34, 64, 0.7);
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 1px solid rgba(100, 255, 218, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            z-index: -1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(100, 255, 218, 0.3);
        }
        
        .service-card:hover:before {
            transform: scaleX(1);
        }
        
        .service-icon {
            font-size: 54px;
            color: var(--accent);
            margin-bottom: 30px;
            display: inline-block;
            height: 100px;
            width: 100px;
            line-height: 100px;
            border-radius: 50%;
            background-color: rgba(100, 255, 218, 0.1);
            transition: all 0.4s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1);
            background-color: rgba(100, 255, 218, 0.2);
        }
        
        .service-title {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
        }
        
        .service-description {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 16px;
        }
        
        /* Nova Seção - Especialidades */
        .specialties {
            background-color: var(--primary);
            position: relative;
        }
        
        .specialties::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 70% 30%, rgba(100, 255, 218, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
            z-index: 0;
        }
        
        .specialties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .specialty-card {
            background: rgba(17, 34, 64, 0.7);
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 1px solid rgba(100, 255, 218, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .specialty-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(100, 255, 218, 0.3);
        }
        
        .specialty-icon {
            font-size: 48px;
            color: var(--accent);
            margin-bottom: 25px;
            display: inline-block;
            height: 80px;
            width: 80px;
            line-height: 80px;
            border-radius: 50%;
            background-color: rgba(100, 255, 218, 0.1);
            transition: all 0.4s ease;
        }
        
        .specialty-card:hover .specialty-icon {
            transform: scale(1.1);
            background-color: rgba(100, 255, 218, 0.2);
        }
        
        .specialty-title {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
        }
        
        .specialty-list {
            list-style: none;
            text-align: left;
            margin-top: 20px;
        }
        
        .specialty-list li {
            color: var(--text-light);
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .specialty-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }
        
        /* Sobre Section */
        .about {
            background-color: var(--primary);
            position: relative;
        }
        
        .about-container {
            display: flex;
            align-items: center;
            gap: 80px;
        }
        
        .about-image {
            flex: 1;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(100, 255, 218, 0.2);
            position: relative;
            z-index: 1;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: var(--gradient-accent);
            border-radius: 25px;
            z-index: 0;
            opacity: 0.3;
            filter: blur(15px);
        }
        
        .about-content {
            flex: 1;
        }
        
        .about-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
        }
        
        .about-subtitle {
            font-size: 20px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 30px;
        }
        
        .about-text {
            margin-bottom: 30px;
            color: var(--text-light);
            line-height: 1.8;
            font-size: 17px;
        }
        
        .about-cta {
            background: rgba(17, 34, 64, 0.7);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(100, 255, 218, 0.2);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .about-cta p {
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--text);
        }
        
        /* Processo Section */
        .process {
            background-color: var(--secondary);
            position: relative;
            overflow: hidden;
        }
        
        .process::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 70% 30%, rgba(100, 255, 218, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
            z-index: 0;
        }
        
        .process-title {
            text-align: center;
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 80px;
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
            position: relative;
            z-index: 1;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
            z-index: 1;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-accent);
            z-index: 1;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            max-width: 200px;
        }
        
        .step-number {
            width: 120px;
            height: 120px;
            background: var(--gradient-accent);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: 900;
            margin: 0 auto 25px;
            box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }
        
        .process-step:hover .step-number {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(100, 255, 218, 0.4);
        }
        
        .step-title {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
        }
        
        .step-description {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.6;
        }
        
        /* Testimonials Section */
        .testimonials02 {
            padding: 120px 0;
            background-color: var(--secondary);
            position: relative;
            overflow: hidden;
        }
        
        .testimonials02::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(100, 255, 218, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
            z-index: 0;
        }
        
        .container02 {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .section-title02 {
            font-size: 42px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 80px;
            color: var(--text);
            position: relative;
            font-family: 'Montserrat', sans-serif;
        }
        
        .section-title02:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: var(--gradient-accent);
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .highlight22 {
            color: var(--accent);
        }
        
        .testimonials-container02 {
            position: relative;
            height: 500px;
            margin-bottom: 10px;
            overflow: hidden;
        }
        
        .testimonial-track02 {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            position: relative;
            transition: transform 0.5s ease;
        }
        
        .testimonial-card02 {
            position: absolute;
            width: 60%;
            height: auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            opacity: 0;
            transform: scale(0.8);
            border: 2px solid rgba(100, 255, 218, 0.1);
            background: rgba(17, 34, 64, 0.7);
            backdrop-filter: blur(10px);
        }
        
        .testimonial-card02.active02 {
            opacity: 1;
            transform: scale(1) translateX(0);
            z-index: 5;
        }
        
        .testimonial-card02.prev02 {
            opacity: 0.7;
            transform: scale(0.9) translateX(-150px);
            z-index: 4;
        }
        
        .testimonial-card02.next02 {
            opacity: 0.7;
            transform: scale(0.9) translateX(150px);
            z-index: 4;
        }
        
        .testimonial-card02.hidden02 {
            opacity: 0.3;
            transform: scale(0.8) translateX(-300px);
            z-index: 3;
        }
        
        .testimonial-card02.far-next02 {
            opacity: 0.3;
            transform: scale(0.8) translateX(300px);
            z-index: 3;
        }
        
        .testimonial-image02 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .testimonial-controls02 {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .control-btn02 {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(17, 34, 64, 0.7);
            border: 2px solid rgba(100, 255, 218, 0.2);
            color: var(--accent);
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .control-btn02:hover {
            background: rgba(100, 255, 218, 0.1);
            transform: scale(1.1);
            border-color: var(--accent);
        }
        
        .testimonial-indicators02 {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .indicator02 {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(100, 255, 218, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator02.active02 {
            background: var(--accent);
            transform: scale(1.2);
        }
        
        .indicator02:hover {
            background: var(--accent);
            transform: scale(1.2);
        }
        
        /* Atendimento Online Section */
        .online-therapy {
            background-color: var(--primary);
            text-align: center;
            position: relative;
        }
        
        .online-therapy::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 10%, rgba(100, 255, 218, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 90%, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
            z-index: 0;
        }
        
        .online-therapy-content {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 50px;
        }
        
        .online-therapy-info {
            flex: 1;
            text-align: left;
        }
        
        .online-therapy-image {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(100, 255, 218, 0.2);
            position: relative;
            z-index: 1;
        }
        
        .online-therapy-image img {
            width: 100%;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .online-therapy-image:hover img {
            transform: scale(1.05);
        }
        
        .online-therapy-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
            position: relative;
            z-index: 1;
        }
        
        .online-therapy-subtitle {
            font-size: 22px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }
        
        .online-therapy-text {
            color: var(--text-light);
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }
        
        .online-benefits {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(17, 34, 64, 0.7);
            border-radius: 10px;
            border: 1px solid rgba(100, 255, 218, 0.1);
        }
        
        .benefit-icon {
            color: var(--accent);
            font-size: 24px;
        }
        
        .benefit-text {
            color: var(--text-light);
            font-size: 16px;
        }
        
        /* Contato Section */
        .contact {
            background-color: var(--secondary);
            position: relative;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 30% 30%, rgba(100, 255, 218, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
            z-index: 0;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            position: relative;
            z-index: 1;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        
        .contact-icon {
            width: 70px;
            height: 70px;
            background: rgba(17, 34, 64, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 24px;
            flex-shrink: 0;
            border: 1px solid rgba(100, 255, 218, 0.2);
            transition: all 0.3s ease;
        }
        
        .contact-item:hover .contact-icon {
            background: rgba(100, 255, 218, 0.1);
            transform: scale(1.1);
        }
        
        .contact-details h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
        }
        
        .contact-details p {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 16px;
        }
        
        .contact-form {
            background: rgba(17, 34, 64, 0.7);
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(100, 255, 218, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--text);
            font-size: 16px;
        }
        
        .form-control {
            width: 100%;
            padding: 16px 20px;
            background: rgba(10, 25, 47, 0.7);
            border: 1px solid rgba(100, 255, 218, 0.2);
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            transition: all 0.3s ease;
            color: var(--text);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 80px 0 30px;
            border-top: 1px solid rgba(100, 255, 218, 0.1);
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            font-size: 28px;
            font-weight: 900;
            margin-bottom: 20px;
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
        }
        
        .footer-logo span {
            color: var(--accent);
        }
        
        .footer-about {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 16px;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .footer-social a {
            width: 50px;
            height: 50px;
            background: rgba(17, 34, 64, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(100, 255, 218, 0.1);
        }
        
        .footer-social a:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-5px);
        }
        
        .footer-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(100, 255, 218, 0.1);
            padding-top: 30px;
            text-align: center;
            color: var(--text-light);
            font-size: 14px;
        }
        
        .footer-bottom a {
            color: var(--accent);
            text-decoration: none;
        }
        
        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 70px;
            height: 70px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse-whatsapp 2s infinite;
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        @keyframes pulse-whatsapp {
            0% { box-shadow: 0 0 0 0 rgba(77, 194, 71, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(77, 194, 71, 0); }
            100% { box-shadow: 0 0 0 0 rgba(77, 194, 71, 0); }
        }
        
        /* Chat Assistant */
        .chat-assistant {
            position: fixed;
            bottom: 122px;
            right: 30px; /* padrão no desktop */
            width: 70px;
            height: 70px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 28px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse-chat 2s infinite;
            text-decoration: none;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .chat-assistant {
                position: fixed !important;
                right: 20px !important;  /* AGORA DO LADO DIREITO */
                left: auto !important;
                bottom: 100px !important;
                transform: none !important;
                animation: none !important;
                transition: none !important;
                opacity: 1 !important;
                visibility: visible !important;
                display: flex !important;
                z-index: 999999 !important;
            }
        }
        
        .chat-assistant:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        @keyframes pulse-chat {
            0% { box-shadow: 0 0 0 0 rgba(100, 255, 218, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(100, 255, 218, 0); }
            100% { box-shadow: 0 0 0 0 rgba(100, 255, 218, 0); }
        }
        
        /* Chat Modal */
        .chat-assistant i {
         pointer-events: none;
         }

        .chat-modal {
            position: fixed;
            bottom: 120px;
            right: 120px;
            width: 400px;
            background: rgba(17, 34, 64, 0.95);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(100, 255, 218, 0.2);
            z-index: 1001;
            backdrop-filter: blur(10px);
            display: none;
            overflow: hidden;
        }
        
        .chat-modal.active {
            display: block;
            animation: fadeInUp 0.3s ease;
        }
       
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .chat-header {
            background: rgba(10, 25, 47, 0.9);
            padding: 20px;
            border-bottom: 1px solid rgba(100, 255, 218, 0.1);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .chat-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid var(--accent);
        }
        
        .chat-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .chat-info h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 5px;
        }
        
        .chat-info p {
            font-size: 14px;
            color: var(--accent);
        }
        
        .chat-body {
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;
        }
        
        .chat-message {
            background: rgba(100, 255, 218, 0.1);
            padding: 15px;
            border-radius: 15px;
            margin-bottom: 15px;
            border: 1px solid rgba(100, 255, 218, 0.2);
        }
        
        .chat-message p {
            color: var(--text);
            margin-bottom: 10px;
        }
        
        .chat-options {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }
        
        .chat-option {
            background: rgba(10, 25, 47, 0.7);
            padding: 12px 15px;
            border-radius: 10px;
            border: 1px solid rgba(100, 255, 218, 0.1);
            color: var(--text);
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: left;
        }
        
        .chat-option:hover {
            background: rgba(100, 255, 218, 0.1);
            border-color: var(--accent);
        }
        
        .chat-footer {
            padding: 20px;
            border-top: 1px solid rgba(100, 255, 218, 0.1);
            text-align: center;
        }
        
        /* Animações de entrada */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsividade */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 52px;
            }
            
            .hero-subtitle {
                font-size: 20px;
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
                gap: 40px;
            }
            
            .process-steps:before {
                display: none;
            }
            
            .online-therapy-content {
                flex-direction: column;
            }
            
            .online-therapy-info {
                text-align: center;
            }
        }
        
        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column-reverse;
                text-align: center;
            }
            
            .hero-content {
                padding-right: 0;
                margin-bottom: 60px;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons, .stats {
                justify-content: center;
            }
            
            .hero-image {
                margin-top: 40px;
            }
            
            nav ul {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: var(--primary);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                z-index: 1000;
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .header-cta {
                display: none;
            }
            
            .about-container {
                flex-direction: column;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .section-title {
                font-size: 36px;
            }
         
            .chat-modal {
                width: 350px;
                left: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .hero-buttons .cta-button,
            .hero-buttons .secondary-button {
                width: 100%;
                max-width: 300px;
                text-align: center;
                justify-content: center;
            }
            
            .logo{
                margin-left: 20px;
            }
            .hero {
                padding: 120px 0 100px;
            }
            
            .hero-title {
                font-size: 42px;
                margin-top: 25px;
            }
            
            .hero-subtitle {
                font-size: 18px;
                
                max-width: 100%;
            }
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .cta-button {
                width: 100%;
                text-align: center;
            }
            
            .stats {
                flex-direction: column;
                gap: 30px;
                margin-top: 50px;
            }
            
            .stat-number {
                font-size: 42px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                max-width: 100%;
                margin-bottom: 40px;
            }
            .process-steps {
            display: block;
            }
        
            .online-therapy-title {
                font-size: 36px;
            }
            
            .online-therapy-subtitle {
                font-size: 20px;
            }
            
            .online-therapy-text {
                font-size: 16px;
            }
            
            .online-benefits {
                grid-template-columns: 1fr;
            }
            
            .chat-modal {
                width: 300px;
                left: 10px;
                bottom: 110px;
            }
            
            /* Testimonials Section */
            .testimonials02 {
            padding: 10px 0;
            
             }
            .testimonial-card02 {
            width: 90%;
            }
            .testimonials-container02 {
            margin-top: -30%;
            margin-bottom: -10%;
            }
           
        }
        
        @media (max-width: 576px) {
            
            section {
                padding: 80px 0;
            }
            
            .service-card, .contact-form {
                padding: 40px 30px;
            }
            
            .footer-social {
                justify-content: center;
            }
            
            .whatsapp-float, .chat-assistant {
                width: 60px;
                height: 60px;
                bottom: 20px;
                font-size: 24px;
            }
            
            .whatsapp-float {
                right: 20px;
            }
            
            .chat-assistant {
                left: 20px;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .about-title {
                font-size: 32px;
            }
            
            .chat-modal {
                width: calc(100% - 40px);
                left: 20px;
                right: 20px;
            }
        }