 

    :root {
        /* Color System */
        --primary-50: #FFF5F3;
        --primary-100: #FFE8E4;
        --primary-200: #FFD5CE;
        --primary-300: #FFB8AB;
        --primary-400: #FF8F7D;
        --primary-500: #FF7D65;
        --primary-600: #F05C42;
        --primary-700: #C74A34;
        --primary-800: #A43F2F;
        --primary-900: #88392C;
        
        --secondary-50: #F4F7F7;
        --secondary-100: #E2E9E9;
        --secondary-200: #C8D6D6;
        --secondary-300: #A2BBBA;
        --secondary-400: #749897;
        --secondary-500: #5A7D7C;
        --secondary-600: #4A6666;
        --secondary-700: #3F5454;
        --secondary-800: #374646;
        --secondary-900: #323D3D;
        
        --light: #FFFFFF;
        --dark-800: #1E293B;
        --dark-900: #0F172A;
        
        /* Typography */
        --font-display: 'Montserrat', sans-serif;
        --font-body: 'Montserrat', sans-serif;
        --font-accent: 'Montserrat', sans-serif;
        
        /* Spacing */
        --space-xs: 0.75rem;
        --space-sm: 1rem;
        --space-md: 1.5rem;
        --space-lg: 2rem;
        --space-xl: 3rem;
        --space-2xl: 4rem;
        --space-3xl: 6rem;
        
        /* Shadows */
        --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        
        /* Border radius */
        --radius-sm: 0.25rem;
        --radius-md: 0.375rem;
        --radius-lg: 0.5rem;
        --radius-xl: 0.75rem;
        --radius-2xl: 1rem;
        --radius-full: 9999px;
        
        /* Transitions */
        --transition-all: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        --transition-colors: color 0.15s ease, background-color 0.15s ease;
        --transition-transform: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        --transition-opacity: opacity 0.3s ease;
    }

    /* Base Styles */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        color: var(--dark-800);
        background-color: var(--light);
        line-height: 1.6;
        overflow-x: hidden;
        font-weight: 400;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: var(--font-display);
        font-weight: 700;
        line-height: 1.2;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 var(--space-md);
    }

    nav{
        display: none;
    }
    /* About Section */
    .about {
        padding: var(--space-3xl) 0;
        background-color: var(--light);
        position: relative;
        overflow: hidden;
    }

    .about::before {
        content: '';
        position: absolute;
        top: -150px;
        right: -150px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, var(--primary-100) 0%, transparent 70%);
        z-index: 0;
    }

    .about .container {
        position: relative;
        z-index: 1;
    }

    .about-card {
        display: flex;
        background: var(--light);
        border-radius: var(--radius-2xl);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        transition: var(--transition-transform);
    }

    .about-card:hover {
        transform: translateY(-5px);
    }

    .about-image {
        flex: 0 0 40%;
        position: relative;
        overflow: hidden;
    }

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: var(--transition-transform);
    }

    .about-card:hover .about-image img {
        transform: scale(1.03);
    }

    .about-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, transparent 100%);
        z-index: 1;
    }

    .about-content {
        flex: 1;
        padding: var(--space-2xl);
        display: flex;
        flex-direction: column;
    }

    .section-subtitle {
        display: inline-block;
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--primary-500);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: var(--space-xs);
    }

    .section-title {
        font-family: var(--font-display);
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        font-weight: 800;
        color: var(--dark-900);
        margin-bottom: var(--space-xs);
        line-height: 1.2;
    }

    .about-profession {
        font-size: 1.1rem;
        color: var(--secondary-600);
        font-weight: 600;
        margin-bottom: var(--space-lg);
        position: relative;
        padding-bottom: var(--space-md);
    }

    .about-profession::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(to right, var(--primary-500), var(--primary-300));
        border-radius: var(--radius-full);
    }

    .about-text {
        margin-bottom: var(--space-xl);
    }

    .about-text p {
        margin-bottom: var(--space-md);
        color: var(--secondary-700);
        line-height: 1.8;
        font-weight: 500;
    }

    .about-cta .btn {
        padding: var(--space-sm) var(--space-xl);
        align-self: flex-start;
    }


        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }

        /* Services Section */
        .services {
            padding: var(--space-3xl) 0;
            background-color: var(--secondary-50);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to top, var(--light), transparent);
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--space-2xl);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-subtitle {
            display: block;
            font-size: 1.1rem;
            color: var(--primary-500);
            font-weight: 600;
            margin-bottom: var(--space-sm);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark-900);
            margin-bottom: var(--space-md);
            line-height: 1.2;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--secondary-700);
            line-height: 1.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-lg);
            margin-bottom: var(--space-2xl);
            perspective: 1000px;
        }

        .service-card {
            position: relative;
            width: 100%;
            height: 340px;
            transform-style: preserve-3d;
            transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
            cursor: pointer;
            border-radius: var(--radius-xl);
        }

        .service-card.flipped {
            transform: rotateY(180deg);
        }

        .card-front,
        .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: var(--radius-xl);
            padding: var(--space-xl);
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-md);
            transition: all 0.5s ease;
        }

        .card-front {
            background: var(--light);
            transform: rotateY(0deg);
            z-index: 2;
        }

        .card-back {
            background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
            transform: rotateY(180deg);
            color: var(--light);
            justify-content: space-between;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-md);
            color: var(--light);
            font-size: 1.5rem;
            box-shadow: 0 10px 20px rgba(255, 125, 101, 0.2);
        }

        .card-front h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-900);
            margin-bottom: var(--space-sm);
            line-height: 1.3;
        }

        .card-front p {
            color: var(--secondary-600);
            margin-bottom: var(--space-md);
            flex-grow: 1;
            font-weight: 500;
        }

        .card-cta {
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            color: var(--primary-500);
            font-weight: 700;
            transition: var(--transition-colors);
        }

        .service-card:hover .card-cta {
            color: var(--primary-600);
        }

        .service-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            padding: 0;
            margin: 0;
        }

        .service-features li {
            display: flex;
            align-items: flex-start;
            gap: var(--space-xs);
            line-height: 1.5;
            font-size: 0.95rem;
        }

        .service-features i {
            color: var(--light);
            font-size: 0.9rem;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .back-cta {
            margin-top: var(--space-md);
            text-align: center;
            padding-top: var(--space-sm);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .back-cta span {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            font-size: 0.9rem;
            color: var(--light);
            opacity: 0.8;
            transition: var(--transition-colors);
            cursor: pointer;
        }

        .back-cta:hover span {
            opacity: 1;
            color: var(--light);
        }

        .services-description {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            color: var(--secondary-700);
            line-height: 1.8;
            position: relative;
            z-index: 2;
            font-weight: 500;
        }

        .services-cta {
            margin-top: var(--space-xl);
            text-align: center;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-xs);
            padding: var(--space-md) var(--space-xl);
            background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
            color: var(--light);
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 125, 101, 0.3);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 125, 101, 0.4);
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-card {
                height: 320px;
            }
        }
    :root {
            --primary: #C74A34;
            --primary-light: #C74A34;
            --primary-dark: #C74A34;
            --secondary: #FF7D65;
            --accent: #00BFA5;
            --text-dark: #263238;
            --text-light: #546E7A;
            --background: #F8F9FA;
            --white: #FFFFFF;
            --gray-light: #ECEFF1;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            background-color: var(--background);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header da seção */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-subtitle {
            display: block;
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .section-title span {
            color: var(--primary);
        }
        
        .section-decoration {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px 0;
        }
        
        .decoration-line {
            height: 2px;
            width: 40px;
            background-color: var(--primary);
        }
        
        .decoration-dot {
            width: 8px;
            height: 8px;
            background-color: var(--primary);
            border-radius: 50%;
            margin: 0 15px;
        }
        
        .section-description {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Conteúdo principal */
        .nutrition-content {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }
        
        /* Destaque principal */
        .nutrition-highlight {
            background: var(--white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }
        
        .nutrition-highlight:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .highlight-main i {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            display: block;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .highlight-main h3 {
            font-size: 1.8rem;
            color: var(--text-dark);
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .highlight-main p {
            font-size: 1.15rem;
            line-height: 1.7;
            color: var(--text-light);
            max-width: 900px;
            margin: 0 auto;
        }
        
        /* Processo de atendimento */
        .process-container {
            background: var(--white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow);
        }
        
        .process-title {
            text-align: center;
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 40px;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }
        
        .process-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-light), var(--primary-dark));
            border-radius: 2px;
        }
        
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            padding: 25px;
            border-radius: 12px;
            background: var(--gray-light);
            transition: var(--transition);
        }
        
        .process-step:hover {
            background: var(--white);
            box-shadow: var(--shadow);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.5rem;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
        }
        
        .step-content {
            flex: 1;
        }
        
        .step-content h4 {
            font-size: 1.4rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .step-content h4 i {
            color: var(--primary);
            font-size: 1.3rem;
        }
        
        .step-content p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 1.05rem;
        }
        
        .step-details {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 12px;
        }
        
        .step-details li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-dark);
            font-weight: 500;
            padding: 8px 0;
        }
        
        .step-details li i {
            color: var(--primary);
            font-size: 0.9rem;
            width: 20px;
            text-align: center;
        }
        
        /* Exames utilizados */
        .exams-section {
            background: var(--white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow);
        }
        
        .exams-title {
            text-align: center;
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 40px;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }
        
        .exams-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-light), var(--primary-dark));
            border-radius: 2px;
        }
        
        .exams-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .exam-category {
            background: var(--gray-light);
            border-radius: 12px;
            padding: 25px;
            transition: var(--transition);
            border-left: 4px solid var(--primary);
        }
        
        .exam-category:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            background: var(--white);
        }
        
        .exam-category h4 {
            font-size: 1.3rem;
            color: var(--primary-dark);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid rgba(46, 125, 50, 0.2);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .exam-category h4 i {
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .exam-category ul {
            list-style: none;
        }
        
        .exam-category li {
            padding: 10px 0;
            color: var(--text-dark);
            position: relative;
            padding-left: 30px;
            display: flex;
            align-items: center;
        }
        
        .exam-category li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
            width: 22px;
            height: 22px;
            background: rgba(46, 125, 50, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }
        
        /* Abordagem nutricional */
        .nutrition-approach {
            background: var(--white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow);
        }
        
        .approach-title {
            text-align: center;
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 40px;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }
        
        .approach-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-light), var(--primary-dark));
            border-radius: 2px;
        }
        
        .approach-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .approach-card {
            background: var(--gray-light);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .approach-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            background: var(--white);
        }
        
        .approach-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--white);
            box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
        }
        
        .approach-card h4 {
            font-size: 1.3rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .approach-card p {
            color: var(--text-light);
            line-height: 1.6;
            flex-grow: 1;
        }
        
        /* CTA */
        .nutrition-cta {
            background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
            border-radius: 16px;
            padding: 50px 40px;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
            margin-top: 20px;
        }
        
        .nutrition-cta::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .nutrition-cta::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .btn-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 32px;
            background: var(--white);
            color: var(--primary-dark);
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            font-size: 1.1rem;
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            background: var(--gray-light);
        }
        
        .cta-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            padding: 10px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            z-index: 1;
        }
        
        /* Responsividade */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .process-step {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            
            .step-number {
                margin-bottom: 15px;
            }
            
            .step-content h4 {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .section-header {
                margin-bottom: 40px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .nutrition-highlight,
            .process-container,
            .exams-section,
            .nutrition-approach {
                padding: 30px 20px;
            }
            
            .nutrition-cta {
                padding: 40px 20px;
            }
            
            .cta-content h3 {
                font-size: 1.7rem;
            }
            
            .cta-badge {
                position: static;
                margin-top: 25px;
                justify-content: center;
                width: fit-content;
                margin-left: auto;
                margin-right: auto;
            }
            
            .step-details {
                grid-template-columns: 1fr;
            }
            
            .exams-grid,
            .approach-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .highlight-main p {
                font-size: 1rem;
            }
            
            .process-title,
            .exams-title,
            .approach-title {
                font-size: 1.7rem;
            }
            
            .step-content h4 {
                font-size: 1.2rem;
            }
            
            .btn-cta {
                padding: 14px 25px;
                font-size: 1rem;
            }
            
            .nutrition-cta::before, 
            .nutrition-cta::after {
                display: none;
            }
        }
.clinical-nutrition-section {
    padding: 6rem 0;
    background-color: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.clinical-nutrition-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23EFF6FF" d="M0,0 L100,100 L100,0 Z"></path></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Tabs */
.clinical-tabs {
    margin: 4rem 0;
    position: relative;
    z-index: 1;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.tab-button {
    padding: 1rem 1.5rem;
    background: white;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #4A6666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.tab-button i {
    font-size: 1.1rem;
}

.tab-button.active, .tab-button:hover {
    background: #FF7D65;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 125, 101, 0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

/* Conteúdo das Tabs */
.condition-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.condition-info {
    flex: 1;
    min-width: 300px;
}

.condition-info h3 {
    font-size: 1.8rem;
    color: #0F172A;
    margin-bottom: 1.5rem;
}

.condition-info p {
    color: #4A6666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.condition-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.benefit-item i {
    color: #FF7D65;
    margin-top: 3px;
    font-size: 1.1rem;
}

.benefit-item span {
    color: #0F172A;
    font-weight: 500;
}

.btn-condition {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: #FF7D65;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-condition:hover {
    background: #FF5A5F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 125, 101, 0.3);
}

.condition-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.condition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    min-height: 300px;
    max-height: 400px;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-badge i {
    color: #FF7D65;
}

/* Grid para outras condições */
.condition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.condition-item {
    background: #F8FAFC;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.condition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.condition-item i {
    font-size: 1.8rem;
    color: #FF7D65;
    margin-bottom: 1rem;
}

.condition-item h4 {
    font-size: 1.1rem;
    color: #0F172A;
    margin-bottom: 0.5rem;
}

.condition-item p {
    color: #4A6666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Diferenciais */
.clinical-differentials {
    margin: 5rem 0;
    text-align: center;
}

.clinical-differentials h3 {
    font-size: 1.8rem;
    color: #0F172A;
    margin-bottom: 3rem;
    position: relative;
}

.clinical-differentials h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #FF7D65;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.differential-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.differential-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFECE9 0%, #FFFFFF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #FF7D65;
}

.differential-card h4 {
    font-size: 1.2rem;
    color: #0F172A;
    margin-bottom: 1rem;
}

.differential-card p {
    color: #4A6666;
    line-height: 1.6;
}

/* CTA */
.clinical-cta {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: 12px;
    padding: 4rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.clinical-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.clinical-cta::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: #FF7D65;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #FF5A5F;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 125, 101, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: transparent;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .condition-content {
        padding: 2rem;
    }
    
    .condition-image {
        min-height: 250px;
    }
    
    .clinical-cta {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .clinical-nutrition-section {
        padding: 4rem 0;
    }
    
    .condition-benefits {
        grid-template-columns: 1fr;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-button {
        justify-content: center;
    }
    
    .condition-info h3 {
        font-size: 1.5rem;
    }
    
    .clinical-cta::before, 
    .clinical-cta::after {
        display: none;
    }
}
       /* Estilos da seção da loja */
    .loja-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #FFF5F3 0%, #FFFFFF 100%);
        position: relative;
        overflow: hidden;
    }
    
    .loja-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,125,101,0.1) 0%, transparent 70%);
        z-index: 0;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        position: relative;
        z-index: 1;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-subtitle {
        display: inline-block;
        font-size: 0.9rem;
        font-weight: 700;
        color: #FF7D65;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.5rem;
        font-weight: 800;
        color: #0F172A;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .section-title span {
        color: #FF7D65;
        position: relative;
    }
    
    .section-title span::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background-color: rgba(255, 125, 101, 0.3);
        z-index: -1;
        transform: rotate(-1deg);
    }
    
    .section-decoration {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .decoration-line {
        width: 50px;
        height: 2px;
        background: linear-gradient(to right, #FF7D65, #FFB8AB);
    }
    
    .decoration-dot {
        width: 10px;
        height: 10px;
        background-color: #FF7D65;
        border-radius: 50%;
    }
    
    .section-description {
        color: #4A6666;
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 700px;
        margin: 0 auto;
    }
    
    /* Estilos do countdown */
    .countdown-container {
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .countdown-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .countdown-header {
        background: linear-gradient(135deg, #2c3e50, #4a6491);
        color: white;
        padding: 2rem;
        text-align: center;
    }
    
    .countdown-header h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }
    
    .countdown-timer {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .timer-box {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        padding: 1rem;
        min-width: 80px;
    }
    
    .timer-box span {
        font-size: 2.5rem;
        font-weight: 800;
        display: block;
        color: white;
    }
    
    .timer-box small {
        font-size: 0.8rem;
        text-transform: uppercase;
        opacity: 0.8;
    }
    
    .countdown-content {
        display: flex;
        padding: 3rem;
        gap: 3rem;
    }
    
    .countdown-image {
        flex: 0 0 45%;
        position: relative;
    }
    
    .doutora-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .countdown-text {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .countdown-text h4 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .countdown-text h4 span {
        color: #FF7D65;
    }
    
    .countdown-text p {
        color: #4A6666;
        line-height: 1.8;
        margin-bottom: 2rem;
    }
    
    .countdown-benefits {
        margin-bottom: 2.5rem;
    }
    
    .benefit-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .benefit-icon {
        color: #FF7D65;
        font-size: 1.2rem;
    }
    
    .benefit-text {
        color: #0F172A;
        font-weight: 500;
    }
    
    .countdown-cta {
        margin-top: auto;
        background: #F4F7F7;
        border-radius: 15px;
        padding: 1.5rem;
    }
    
    .cta-text span {
        display: block;
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 0.5rem;
    }
    
    .cta-text p {
        color: #4A6666;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .countdown-form {
        width: 100%;
    }
    
    .form-group {
        display: flex;
        gap: 1rem;
    }
    
    .countdown-form input {
        flex: 1;
        padding: 0.8rem 1.5rem;
        border: 1px solid #E2E9E9;
        border-radius: 50px;
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem;
    }
    
    .countdown-form input:focus {
        outline: none;
        border-color: #FF7D65;
        box-shadow: 0 0 0 3px rgba(255, 125, 101, 0.1);
    }
    
    .btn-countdown {
        background: linear-gradient(to right, #FF7D65, #FF8F7D);
        color: white;
        border: none;
        padding: 10px 2rem;
        border-radius: 50px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
    }
    
    .btn-countdown:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 125, 101, 0.3);
    }
    
    /* Responsividade */
    @media (max-width: 992px) {
        .countdown-content {
            flex-direction: column;
            padding: 2rem;
            gap: 2rem;
        }
        
        .countdown-image {
            height: 300px;
            flex: 0 0 auto;
        }
        
        .countdown-timer {
            gap: 1rem;
        }
        
        .timer-box {
            min-width: 70px;
            padding: 0.8rem;
        }
        
        .timer-box span {
            font-size: 2rem;
        }
        
        .form-group {
            flex-direction: column;
        }
        
        .btn-countdown {
            justify-content: center;
            padding: 0.8rem;
        }
    }
    
    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }
        
        .countdown-timer {
            flex-wrap: wrap;
        }
        
        .countdown-text h4 {
            font-size: 1.5rem;
        }
    }
    
    @media (max-width: 576px) {
        .section-title {
            font-size: 1.8rem;
        }
        
        .section-description {
            font-size: 1rem;
        }
        
        .countdown-header {
            padding: 1.5rem;
        }
        
        .countdown-header h3 {
            font-size: 1.3rem;
        }
        
        .countdown-content {
            padding: 1.5rem;
        }
        
        .timer-box {
            min-width: 60px;
        }
        
        .timer-box span {
            font-size: 1.8rem;
        }
    }
    /* Conversion Section */
.conversion-section3 {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    position: relative;
    overflow: hidden;
}

.conversion-section3::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,125,101,0.1) 0%, transparent 70%);
    z-index: 0;
}

.container3 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.conversion-wrapper3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.marketing-column3 {
    padding-right: 30px;
}

.section-subtitle3 {
    color: #ff7d65;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.section-title3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.benefits-list3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item3 {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon3 {
    font-size: 1.5rem;
    color: #ff7d65;
    margin-top: 3px;
    flex-shrink: 0;
}

.benefit-content3 h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
    font-weight: 700;
}

.benefit-content3 p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.testimonial3 {
    margin-bottom: 40px;
}

.testimonial-image3 {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    height: 300px;
}

.testimonial-image3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.guarantee-badge3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #ff7d65;
    font-weight: 700;
}

.guarantee-badge3 i {
    font-size: 1.2rem;
}

/* Form Column */
.form-column3 {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    align-self: center;
}

.form-header3 {
    text-align: center;
    margin-bottom: 30px;
}

.form-header3 h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header3 h3 span {
    color: #ff7d65;
}

.form-header3 p {
    color: #64748b;
    font-size: 0.95rem;
}

.conversion-form3 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group3 label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
}

.form-group3 input,
.form-group3 select {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group3 input:focus,
.form-group3 select:focus {
    outline: none;
    border-color: #ff7d65;
    box-shadow: 0 0 0 3px rgba(255,125,101,0.1);
}

.btn-form3 {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #ff7d65, #ff6b50);
    color: white;
    font-weight: 700;
    border: none;
    margin-top: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-form3:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 125, 101, 0.3);
}

.form-footer3 {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #64748b;
}

.form-footer3 i {
    color: #ff7d65;
}

/* Responsividade */
@media (max-width: 768px) {
    .conversion-wrapper3 {
        grid-template-columns: 1fr;
    }
    
    .marketing-column3 {
        padding-right: 0;
    }
    
    .testimonial-image3 {
        height: 250px;
    }
    
    .section-title3 {
        font-size: 1.8rem;
    }
}

    /* WhatsApp Float */
    .whatsapp-float {
        position: fixed;
        text-decoration: none;
        bottom: var(--space-xl);
        right: var(--space-md);
        width: 60px;
        height: 60px;
        background: #25D366;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: var(--shadow-lg);
        z-index: 100;
        transition: var(--transition-all);
    }

    .whatsapp-float:hover {
        transform: scale(1.1) rotate(10deg);
    }

    /* Animations */
    @keyframes scrollDown {
        0% {
            transform: translate(-50%, 0);
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            transform: translate(-50%, 12px);
            opacity: 0;
        }
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0) translateX(-50%);
        }
        40% {
            transform: translateY(-20px) translateX(-50%);
        }
        60% {
            transform: translateY(-10px) translateX(-50%);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(255, 125, 101, 0.7);
        }
        70% {
            transform: scale(1.05);
            box-shadow: 0 0 0 10px rgba(255, 125, 101, 0);
        }
        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(255, 125, 101, 0);
        }
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
        .services-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 992px) {
        .hero .container {
            flex-direction: column;
            text-align: center;
        }
        
        .hero-content {
            max-width: 100%;
            margin-bottom: var(--space-2xl);
        }
        
        .hero-actions {
            justify-content: center;
        }
        
        .profile-card {
            width: 300px;
        }
        
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .service-card {
            height: 320px;
        }
        
        .about-card {
            flex-direction: column;
        }
        
        .about-image {
            flex: 0 0 300px;
        }
        
        .about-content {
            padding: var(--space-xl);
        }
        
        .conversion-wrapper {
            grid-template-columns: 1fr;
        }
        
        .marketing-column {
            padding-right: 0;
            text-align: center;
        }
        
        .benefit-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .testimonial-author {
            justify-content: center;
        }
        
        .guarantee-badge {
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .nav-list {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--light);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: var(--space-xl);
            z-index: 1000;
            transform: translateY(-100%);
            transition: var(--transition-all);
            opacity: 0;
            pointer-events: none;
        }
        
        .nav-list.active {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }
        
        .mobile-menu {
            display: block;
            z-index: 1001;
        }
        
        .mobile-menu .fa-times {
            display: none;
        }
        
        .mobile-menu.active .fa-bars {
            display: none;
        }
        
        .mobile-menu.active .fa-times {
            display: block;
        }
        
        .nav-cta {
            margin-left: 0;
            margin-top: var(--space-md);
        }
        
        .profile-card {
            width: 250px;
        }
        
        .service-card {
            height: 300px;
        }
        
        .card-front,
        .card-back {
            padding: var(--space-lg);
        }
        
        .card-icon {
            width: 50px;
            height: 50px;
            font-size: 1.3rem;
        }
        
        .card-front h3 {
            font-size: 1.3rem;
        }
        
        .service-features li {
            font-size: 0.9rem;
        }
        
        .ebooks-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .bonus-header h3 {
            font-size: 1.5rem;
        }
        
        .bonus-content h4 {
            font-size: 1.1rem;
        }
        
        .section-header {
            text-align: left;
        }
        
        .section-description {
            text-align: left;
        }
    }

    @media (max-width: 576px) {
        .hero-actions {
            flex-direction: column;
            gap: var(--space-sm);
        }
        
        .btn-hero {
            width: 100%;
        }
        
        .profile-card {
            width: 220px;
        }
        
        .card-image {
            height: 350px;
        }
        
        .about-image {
            flex: 0 0 250px;
        }
        
        .about-content {
            padding: var(--space-lg);
        }
        
        .about-cta .btn {
            width: 100%;
            justify-content: center;
        }
        
        .services-grid {
            grid-template-columns: 1fr;
        }
        
        .service-card {
            height: 280px;
            min-height: auto;
        }
        
        .hero-stats {
            flex-direction: column;
            gap: var(--space-md);
        }
    }

    /* Animation for mobile interaction */
    @keyframes cardFlip {
        0% {
            transform: rotateY(0);
        }
        100% {
            transform: rotateY(180deg);
        }
    }

    @keyframes cardUnflip {
        0% {
            transform: rotateY(180deg);
        }
        100% {
            transform: rotateY(0);
        }
    }

    /* Área de clique mais fácil para mobile */
    .card-click-area {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 80%; /* Cobrir a parte superior do card */
        z-index: 2;
        cursor: pointer;
        display: none;
    }

    @media (max-width: 768px) {
        .card-click-area {
            display: block;
        }
        
        .service-card {
            cursor: default; /* Remove cursor pointer padrão */
        }
        
        .card-front {
            pointer-events: none; /* Permite clique na área transparente */
        }
        
        .card-back {
            pointer-events: auto; /* Mantém interação no verso */
        }
    }

    /* Melhoria visual para desktop */
    @media (hover: hover) {
        .service-card:hover {
            cursor: pointer;
        }
    }   /* Estilos da seção de depoimentos */
    .depoimentos-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #FFF5F3 0%, #FFFFFF 100%);
        position: relative;
        overflow: hidden;
    }
    
    .depoimentos-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,125,101,0.05) 0%, transparent 70%);
        z-index: 0;
    }
    
    .depoimentos-section .container {
        position: relative;
        z-index: 1;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-subtitle {
        display: inline-block;
        font-size: 0.9rem;
        font-weight: 700;
        color: #FF7D65;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.5rem;
        font-weight: 800;
        color: #0F172A;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .section-title span {
        color: #FF7D65;
        position: relative;
    }
    
    .section-title span::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background-color: rgba(255, 125, 101, 0.3);
        z-index: -1;
        transform: rotate(-1deg);
    }
    
    .section-decoration {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .decoration-line {
        width: 50px;
        height: 2px;
        background: linear-gradient(to right, #FF7D65, #FFB8AB);
    }
    
    .decoration-dot {
        width: 10px;
        height: 10px;
        background-color: #FF7D65;
        border-radius: 50%;
    }
    
    .section-description {
        color: #4A6666;
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    /* Estilos do carrossel */
    .depoimentos-carrossel {
        position: relative;
        display: flex;
        align-items: center;
        margin: 0 auto;
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .carrossel-container {
        width: 100%;
        overflow: hidden;
    }
    
    .carrossel-track {
        display: flex;
        transition: transform 0.5s ease;
        will-change: transform;
    }
    
    .carrossel-item {
        flex: 0 0 calc(100% / 3);
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .depoimento-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .depoimento-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }
    
    .depoimento-print {
        width: 100%;
        height:auto;
        display: block;
        border-bottom: 1px solid #f0f0f0;
    }
  
   
    .depoimento-info {
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
    }
    
    .depoimento-nome {
        font-weight: 600;
        color: #0F172A;
    }
    
    .depoimento-data {
        font-size: 0.8rem;
        color: #749897;
    }
    
    .carrossel-btn {
        background: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .carrossel-btn:hover {
        background: #FF7D65;
        color: white;
        transform: scale(1.1);
    }
    
    .carrossel-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    .carrossel-btn i {
        font-size: 1.2rem;
    }
    
    .carrossel-dots {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
        gap: 10px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #E2E9E9;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .dot.active {
        background: #FF7D65;
        transform: scale(1.2);
    }
    
    /* Responsividade */
    @media (max-width: 992px) {
        .carrossel-item {
            flex: 0 0 50%;
        }
    }
    
    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }
        
        .carrossel-item {
            flex: 0 0 100%;
        }
        
        .carrossel-btn {
            width: 40px;
            height: 40px;
        }
    }
    
    @media (max-width: 576px) {
        .section-title {
            font-size: 1.8rem;
        }
        
        .section-description {
            font-size: 1rem;
        }
        
        .depoimentos-carrossel {
            padding: 0;
        }
    }
     
    /* Estilos da seção de contato */
    .contato-section {
        padding: 6rem 0;
        background-color: #FFFFFF;
        position: relative;
    }
    
    .contato-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23FFF5F3" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>');
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: bottom;
        z-index: 0;
    }
    
    .contato-section .container {
        position: relative;
        z-index: 1;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-subtitle {
        display: inline-block;
        font-size: 0.9rem;
        font-weight: 700;
        color: #FF7D65;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.5rem;
        font-weight: 800;
        color: #0F172A;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .section-title span {
        color: #FF7D65;
        position: relative;
    }
    
    .section-title span::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background-color: rgba(255, 125, 101, 0.3);
        z-index: -1;
        transform: rotate(-1deg);
    }
    
    .section-decoration {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .decoration-line {
        width: 50px;
        height: 2px;
        background: linear-gradient(to right, #FF7D65, #FFB8AB);
    }
    
    .decoration-dot {
        width: 10px;
        height: 10px;
        background-color: #FF7D65;
        border-radius: 50%;
    }
    
    .section-description {
        color: #4A6666;
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    /* Grid de contato */
    .contato-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    /* Informações de contato */
    .contato-info {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .info-card {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        background-color: #FF7D65;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .info-content h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 0.5rem;
    }
    
    .info-content p {
        color: #4A6666;
        line-height: 1.6;
    }
    
    .info-content a {
        color: #4A6666;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .info-content a:hover {
        color: #FF7D65;
    }
    
    /* Redes sociais */
    .redes-sociais h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 1rem;
    }
    
    .social-links {
        display: flex;
        gap: 1rem;
    }
    
    .social-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .social-link i {
        font-size: 1.2rem;
    }
    
    .social-link.instagram {
        background-color: #F3F3F3;
        color: #E1306C;
    }
    
    .social-link.linkedin {
        background-color: #F3F3F3;
        color: #0077B5;
    }
    
    .social-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Mapa */
    .contato-mapa {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        height: 100%;
    }
    
    .mapa-wrapper {
        position: relative;
        padding-bottom: 75%; /* Proporção 4:3 */
        height: 0;
        overflow: hidden;
    }
    
    .mapa-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    /* Responsividade */
    @media (max-width: 992px) {
        .contato-grid {
            grid-template-columns: 1fr;
        }
        
        .contato-mapa {
            height: 400px;
        }
        
        .mapa-wrapper {
            padding-bottom: 0;
            height: 400px;
        }
    }
    
    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }
        
        .info-card {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .social-links {
            flex-direction: column;
        }
    }
    
    @media (max-width: 576px) {
        .section-title {
            font-size: 1.8rem;
        }
        
        .section-description {
            font-size: 1rem;
        }
        
        .contato-section {
            padding: 4rem 0;
        }
    }

     /* Estilos do Footer */
    .site-footer {
        background-color: #0F172A;
        color: #FFFFFF;
        padding: 3rem 0 0;
        font-family: 'Montserrat', sans-serif;
    }
    
    .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    
    .footer-about {
        display: flex;
        flex-direction: column;
    }
    
    .footer-logo {
        display: flex;
        flex-direction: column;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo .logo-main {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
        color: #FFFFFF;
        letter-spacing: -0.5px;
    }
    
    .footer-logo .logo-main span {
        color: #FF7D65;
    }
    
    .footer-logo .logo-sub {
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #A2BBBA;
        margin-top: 0.1rem;
    }
    
    .footer-description {
        color: #A2BBBA;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .footer-social {
        display: flex;
        gap: 1rem;
    }
    
    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: #FFFFFF;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
        background-color: #FF7D65;
        transform: translateY(-3px);
    }
    
    .footer-title {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #FFFFFF;
        position: relative;
        padding-bottom: 0.5rem;
    }
    
    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: #FF7D65;
    }
    
    .footer-links {
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 0.8rem;
    }
    
    .footer-links a {
        color: #A2BBBA;
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: 500;
    }
    
    .footer-links a:hover {
        color: #FF7D65;
    }
    
    .footer-contact {
        list-style: none;
    }
    
    .footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-contact i {
        color: #FF7D65;
        margin-top: 0.2rem;
    }
    
    .footer-contact a {
        color: #A2BBBA;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-contact a:hover {
        color: #FF7D65;
    }
    
    .footer-hours {
        list-style: none;
    }
    
    .footer-hours li {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.8rem;
        padding-bottom: 0.8rem;
        border-bottom: 1px dashed rgba(162, 187, 186, 0.2);
    }
    
    .footer-hours span:first-child {
        color: #A2BBBA;
    }
    
    .footer-hours span:last-child {
        color: #FFFFFF;
        font-weight: 500;
    }
    
    .footer-bottom {
        background-color: rgba(0, 0, 0, 0.2);
        padding: 1.5rem 0;
        margin-top: 3rem;
    }
    
    .footer-bottom .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-copyright {
        color: #A2BBBA;
        font-size: 0.9rem;
    }
    
    .footer-credits {
        color: #A2BBBA;
        font-size: 0.9rem;
    }
    
    .footer-credits i {
        color: #FF7D65;
    }
    
    /* Responsividade */
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(4, 1fr);
        }
        
        .footer-bottom .footer-container {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }
    }