        :root {
            --color-transformacao: #58223c;
            --color-amor: #a24256;
            --color-saude: #f2c4b3;
            --color-acolhedor: #f1ebb9;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Lato', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden !important; /* Garante que não haverá rolagem horizontal */
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1; 
        }

        ::-webkit-scrollbar-thumb {
            background: var(--color-amor); 
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--color-transformacao); 
        }


        .font-serif {
            font-family: 'Source Sans Pro', sans-serif;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .container-sm {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--color-saude);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            height: 40px;
            width: auto;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .logo:hover {
            opacity: 0.8;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 0.5rem;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .btn-primary {
            background-color: var(--color-transformacao);
            color: white;
        }

        .btn-outline {
            background: transparent;
            color: var(--color-transformacao);
            border: 2px solid var(--color-amor);
        }

        .btn-outline:hover {
            background: rgba(162, 66, 86, 0.1);
        }

        .btn-white {
            background: white;
            color: var(--color-transformacao);
        }

        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1.1rem;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(to bottom, var(--color-acolhedor), var(--color-saude));
            padding: 5rem 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .hero-content {
            space-y: 2rem;
        }

        .badge {
            display: inline-block;
            background-color: var(--color-amor);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 1rem;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--color-transformacao);
            margin: 1rem 0;
        }

        .hero-title .highlight {
            color: var(--color-amor);
        }

        .hero-text {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--color-transformacao);
            margin: 1rem 0;
        }

        .hero-quote {
            font-style: italic;
            font-weight: 500;
            color: var(--color-amor);
            margin: 1rem 0;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
            }
        }

        .hero-image {
            position: relative;
            max-width: 400px;
            margin: 0 auto;
            transition: transform 0.3s ease;
        }
        .hero-image:hover {
            transform: scale(1.03);
        }

        .hero-image-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom right, var(--color-saude), var(--color-acolhedor));
            border-radius: 1.5rem;
            transform: rotate(6deg);
            transition: transform 0.3s ease;
        }
        
        .hero-image:hover .hero-image-bg {
            transform: rotate(8deg);
        }

        .hero-image-card {
            position: relative;
            background: white;
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 1rem;
        }

        /* Sections */
        .section {
            padding: 5rem 1rem;
        }

        .section-white {
            background: white;
        }

        .section-gradient {
            background: linear-gradient(to bottom right, var(--color-saude), var(--color-acolhedor));
        }

        .section-dark {
            background: linear-gradient(to right, var(--color-transformacao), var(--color-amor));
        }

        .section-footer {
            background: var(--color-transformacao);
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-transformacao);
            text-align: center;
            margin-bottom: 1rem;
        }

        .section-title-white {
            color: white;
        }

        .section-divider {
            width: 5rem;
            height: 0.25rem;
            background: var(--color-amor);
            margin: 0 auto 3rem;
            border-radius: 0.125rem;
        }

        .text-center {
            text-align: center;
        }

        .text-lg {
            font-size: 1.125rem;
            line-height: 1.7;
        }

        .text-xl {
            font-size: 1.25rem;
            line-height: 1.7;
        }

        .text-gray {
            color: #6b7280;
        }

        .text-white {
            color: white;
        }

        .text-white-90 {
            color: rgba(255, 255, 255, 0.9);
        }

        .text-peach {
            color: var(--color-saude);
        }

        /* Grid */
        .grid {
            display: grid;
            gap: 1.5rem;
        }

        .grid-2 {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .grid-3 {
            grid-template-columns: 1fr;
        }
        
        @media (min-width: 768px) {
            .grid-3 {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .grid-4 {
            grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        }
        
        .benefits-grid {
             grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .grid-4, .benefits-grid {
                grid-template-columns: repeat(4, 1fr); /* 4 columns on larger screens */
            }
        }


        /* Cards */
        .card {
            background: white;
            border-radius: 0.75rem;
            padding: 1.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--color-saude);
            transition: all 0.3s ease;
        }

        .card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .card-peach {
            background: var(--color-saude);
            border-color: var(--color-amor);
        }

        .card-icon {
            width: 3rem;
            height: 3rem;
            background: var(--color-saude);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            transition: transform 0.3s ease;
        }
        
        .card:hover .card-icon {
            transform: scale(1.1);
        }

        .card-icon-sm {
            width: 2.5rem;
            height: 2.5rem;
            margin-bottom: 0.75rem;
        }

        .card-title {
            font-weight: 600;
            color: var(--color-transformacao);
            margin-bottom: 0.75rem;
        }

        .card-text {
            color: #6b7280;
            font-size: 0.875rem;
        }

        /* Icons */
        .icon {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--color-amor);
        }

        .icon-sm {
            width: 1.25rem;
            height: 1.25rem;
        }

        .icon-white {
            color: white;
        }

        /* Animations */
        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .scroll-animate.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-animate-fade {
            opacity: 0;
            transition: opacity 0.8s ease-out;
        }

        .scroll-animate-fade.animate-in {
            opacity: 1;
        }

        .scroll-animate-slide-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .scroll-animate-slide-left.animate-in {
            opacity: 1;
            transform: translateX(0);
        }

        .scroll-animate-slide-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .scroll-animate-slide-right.animate-in {
            opacity: 1;
            transform: translateX(0);
        }

        .scroll-animate-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.6s ease-out;
        }

        .scroll-animate-scale.animate-in {
            opacity: 1;
            transform: scale(1);
        }

        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }

        /* Responsive */
        @media (max-width: 640px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.75rem;
            }
            .section {
                padding: 4rem 1rem;
            }
        }
        
        @media (max-width: 420px) {
            .header-content .btn {
                font-size: 0.8rem;
                padding: 0.6rem 0.8rem;
            }
            .logo {
                height: 35px;
            }
        }

        /* Footer */
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }
        
        @media (max-width: 768px) {
            .footer-brand, .footer-contact {
                justify-content: center;
            }
            .footer-grid {
                text-align: center;
            }
        }


        .footer-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .footer-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: white;
        }

        .footer-subtitle {
            color: var(--color-saude);
        }

        .footer-text {
            color: var(--color-saude);
            margin-bottom: 1rem;
        }

        .footer-list {
            list-style: none;
            color: var(--color-saude);
        }

        .footer-list li {
            margin-bottom: 0.5rem;
        }

        .footer-contact {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
            color: var(--color-saude);
        }

        .footer-bottom {
            border-top: 1px solid var(--color-amor);
            padding-top: 2rem;
            text-align: center;
            color: var(--color-saude);
        }

        .space-y-4 > * + * {
            margin-top: 1rem;
        }

        .space-y-6 > * + * {
            margin-top: 1.5rem;
        }

        .space-y-8 > * + * {
            margin-top: 2rem;
        }
        
        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }
        
        .whatsapp-float .icon {
            color: white;
            width: 30px;
            height: 30px;
        }
        
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
            .whatsapp-float .icon {
                width: 25px;
                height: 25px;
            }
        }