/* Reset e configurações básicas */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            font-size: 16px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Sistema de espaçamento consistente */
        :root {
            --space-xs: 8px;
            --space-sm: 16px;
            --space-md: 24px;
            --space-lg: 32px;
            --space-xl: 48px;
            --space-xxl: 64px;
            
            --primary-color: #6E011E;
            --primary-dark: #560017;
            --secondary-color: #96070D;
            --accent-color: #FFB0B6;
            --white: #FFFFFF;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #333;
            --text-light: #6c757d;
            
            --border-radius: 12px;
            --border-radius-lg: 20px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
            
            --transition: all 0.3s ease;
        }

        /* Tipografia aprimorada */
        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: var(--space-md);
        }

        h2 {
            font-size: 2rem;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: var(--space-md);
        }

        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: var(--space-sm);
        }

        h4 {
            font-size: 1.25rem;
            font-weight: 500;
            line-height: 1.4;
            margin-bottom: var(--space-sm);
        }

        p {
            margin-bottom: var(--space-md);
            line-height: 1.6;
        }

        .text-lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: var(--text-light);
        }

        .text-small {
            font-size: 0.875rem;
        }

        /* Header */
        .header {
            background: var(--white);
            box-shadow: var(--shadow-sm);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .navbar {
            padding: var(--space-sm) 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo h2 {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.25rem;
            margin: 0; /* Remove a margem que estava empurrando o nome para cima */
            line-height: 1; /* Garante que a altura da linha não crie espaços extras */
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: var(--space-lg);
        }

        .nav-link {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: var(--space-xs) 0;
        }

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

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            transition: var(--transition);
        }

        .bar {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Home Section */
        .home-section {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--white) 100%);
            min-height: 100vh;
            width: 100%;
            padding-top: 100px;
            padding-bottom: var(--space-xxl);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .home-wrapper {
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: var(--space-xl);
            background: rgba(255,255,255,0.9);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            padding: var(--space-xl);
            backdrop-filter: blur(10px);
            animation: fadeInUp 0.8s ease-out;
        }

        .home-text {
            flex: 1 1 320px;
            min-width: 280px;
        }

        .home-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: var(--space-md);
            line-height: 1.2;
        }

        .home-subtitle {
            font-size: 1.25rem;
            color: var(--secondary-color);
            margin-bottom: var(--space-md);
            font-weight: 500;
        }

        .home-description {
            color: var(--dark-gray);
            margin-bottom: var(--space-lg);
        }

        .home-buttons {
            display: flex;
            gap: var(--space-md);
            flex-wrap: wrap;
        }

        .home-image {
            flex: 1 1 320px;
            min-width: 260px;
            text-align: center;
        }

        .home-image img {
            width: 100%;
            max-width: 400px;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .home-image img:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-lg);
        }

        /* About Section */
        .about {
            padding: var(--space-xxl) 0;
            background: var(--white);
            scroll-margin-top: 100px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-xl);
            align-items: center;
        }

        .section-title {
            position: relative;
            padding-bottom: var(--space-sm);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .about-image {
            text-align: center;
        }

        .about-image img {
            width: 100%;
            max-width: 400px;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .about-image img:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-lg);
        }

        /* Services Section */
        .services {
            padding: var(--space-xxl) 0;
            background: var(--light-gray);
            scroll-margin-top: 100px;
        }

        .services .section-title {
            text-align: center;
            margin-bottom: var(--space-xl);
        }

        .services .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-lg);
        }

        .service-card {
            background: var(--white);
            padding: var(--space-lg);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border-top: 4px solid var(--accent-color);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-md);
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            transform: scale(1.05);
        }

        .service-icon i {
            font-size: 1.75rem;
            color: var(--white);
        }

        /* Testimonials Section - MELHORADO */
        .testimonials {
            padding: var(--space-xxl) 0;
            background: var(--white);
            scroll-margin-top: 100px;
        }

        .testimonials .section-title {
            text-align: center;
            margin-bottom: var(--space-xl);
        }

        .testimonials .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .testimonials-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto var(--space-xl);
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .testimonials-wrapper {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .testimonials-carousel {
            display: flex;
            overflow-x: auto;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            background: white;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            scroll-snap-type: x mandatory;
            width: 100%;
            max-width: 600px;
        }

        .testimonials-carousel::-webkit-scrollbar {
            display: none;
        }

        .testimonial-slide {
            min-width: 100%;
            padding: var(--space-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            scroll-snap-align: center;
        }

        .whatsapp-mockup {
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
            position: relative;
        }

        .whatsapp-mockup img {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .whatsapp-mockup img:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-md);
        }

        .testimonial-caption {
            margin-top: var(--space-sm);
            font-style: italic;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
        }

        .carousel-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-50%) scale(1.05);
        }

        .prev-btn {
            left: -25px;
        }

        .next-btn {
            right: -25px;
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: var(--space-xs);
            margin-top: var(--space-lg);
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--medium-gray);
            cursor: pointer;
            transition: var(--transition);
        }

        .indicator.active,
        .indicator:hover {
            background: var(--primary-color);
            transform: scale(1.2);
        }

        /* Blog Section - MELHORADO */
        .blog {
            padding: var(--space-xxl) 0;
            background: var(--light-gray);
            scroll-margin-top: 100px;
        }

        .blog .section-title {
            text-align: center;
            margin-bottom: var(--space-xl);
        }

        .blog .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: var(--space-lg);
        }

        .blog-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .blog-image {
            height: 200px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }

        .blog-content {
            padding: var(--space-lg);
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-content h3 {
            color: var(--primary-color);
            transition: var(--transition);
        }

        .blog-card:hover .blog-content h3 {
            color: var(--secondary-color);
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            margin-bottom: var(--space-sm);
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .blog-meta i {
            color: var(--primary-color);
        }

        .blog-excerpt {
            margin-bottom: var(--space-md);
            flex-grow: 1;
        }

        .blog-link {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            margin-top: auto;
        }

        .blog-link:hover {
            color: var(--primary-color);
            gap: var(--space-sm);
        }

        /* Páginas de artigos do blog */
        .blog-article-full {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: var(--space-xl);
            box-shadow: var(--shadow-sm);
            margin-bottom: var(--space-lg);
        }

        .article-header {
            text-align: center;
            margin-bottom: var(--space-xl);
        }

        .article-meta {
            display: flex;
            justify-content: center;
            gap: var(--space-md);
            margin-bottom: var(--space-md);
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .article-image {
            margin: var(--space-lg) 0;
            text-align: center;
        }

        .article-image img {
            max-width: 100%;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
        }

        .article-content h2, 
        .article-content h3, 
        .article-content h4 {
            margin-top: var(--space-lg);
            margin-bottom: var(--space-sm);
            color: var(--primary-color);
        }

        .article-content ul, 
        .article-content ol {
            margin-bottom: var(--space-md);
            padding-left: var(--space-lg);
        }

        .article-content li {
            margin-bottom: var(--space-xs);
        }

        .article-content blockquote {
            border-left: 4px solid var(--accent-color);
            padding-left: var(--space-md);
            margin: var(--space-lg) 0;
            font-style: italic;
            color: var(--text-light);
        }

        .article-footer {
            margin-top: var(--space-xl);
            padding-top: var(--space-md);
            border-top: 1px solid var(--medium-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Contact Section */
        .contact {
            padding: var(--space-xxl) 0;
            background: var(--white);
            scroll-margin-top: 100px;
        }

        .contact .section-title {
            text-align: center;
            margin-bottom: var(--space-sm);
        }

        .contact .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .contact-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: var(--space-xl);
        }

        .contact-content {
            display: flex;
            justify-content: center;
            gap: var(--space-xl);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: var(--space-lg);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            padding: var(--space-lg);
            background: var(--light-gray);
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .contact-item:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-sm);
        }

        .contact-item i {
            font-size: 1.75rem;
            color: var(--primary-color);
            width: 50px;
            text-align: center;
        }

        .contact-link {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

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

        /* Footer */
        .footer {
            background: var(--primary-color);
            color: var(--white);
            padding: var(--space-xl) 0 var(--space-md);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--space-lg);
            margin-bottom: var(--space-lg);
        }

        .footer-section h3,
        .footer-section h4 {
            margin-bottom: var(--space-md);
            color: var(--accent-color);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: var(--space-xs);
        }

        .footer-section a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-section a:hover {
            color: var(--accent-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: var(--space-lg);
            border-top: 1px solid rgba(255, 176, 182, 0.3);
        }

        /* Botões */
        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition);
            cursor: pointer;
            font-size: 1rem;
            text-align: center;
        }

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

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

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

        .btn-secondary:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
        }

        .cta-button {
            padding: 14px 28px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition);
            cursor: pointer;
            font-size: 1rem;
            text-align: center;
            background: var(--primary-color);
            color: var(--white);
            margin: var(--space-xs) 0;
        }

        .cta-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .section-cta {
            text-align: center;
            margin-top: var(--space-xl);
        }

        /* Balão de WhatsApp */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 25px;
            right: 25px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: var(--shadow-md);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.05);
        }

        /* Botão de voltar ao topo */
        .back-to-top {
            position: fixed;
            bottom: 95px;
            right: 25px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            border: none;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1001;
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .back-to-top:hover {
            transform: scale(1.05);
            background: var(--primary-dark);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        /* Loading Spinner */
        .loading-spinner {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.9);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(110, 1, 30, 0.2);
            border-radius: 50%;
            border-top-color: var(--primary-color);
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            z-index: 1001;
            transition: width 0.3s ease;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .home-wrapper {
                flex-direction: column;
                gap: var(--space-lg);
                text-align: center;
            }
            
            .home-text, .home-image {
                min-width: 0;
            }
            
            .home-title {
                font-size: 2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
            
            .contact-content {
                flex-direction: column;
                gap: var(--space-lg);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: var(--white);
                width: 100%;
                text-align: center;
                transition: 0.4s;
                box-shadow: var(--shadow-md);
                padding: var(--space-lg) 0;
                z-index: 999;
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger {
                display: flex;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .testimonials-wrapper {
                margin: 0 20px;
            }
            
            .testimonial-slide {
                padding: var(--space-lg);
            }
            
            .whatsapp-mockup {
                max-width: 280px;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .prev-btn {
                left: -15px;
            }
            
            .next-btn {
                right: -15px;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .home-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .article-footer {
                flex-direction: column;
                gap: var(--space-md);
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .whatsapp-mockup {
                max-width: 250px;
            }
            
            .home-title {
                font-size: 1.8rem;
            }
            
            .home-subtitle {
                font-size: 1.1rem;
            }
            
            .container {
                padding: 0 16px;
            }
            
            .home-section {
                padding: 80px 0 40px;
            }
            
            .services,
            .about,
            .testimonials,
            .blog,
            .contact {
                padding: 40px 0;
            }
            
            .btn {
                padding: 12px 20px;
                font-size: 0.9rem;
                width: 100%;
                max-width: 280px;
            }
            
            .carousel-btn {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }
            
            .prev-btn {
                left: -10px;
            }
            
            .next-btn {
                right: -10px;
            }
        }
