
    /* === VARIÁVEIS DE COR - FÁCIL CUSTOMIZAÇÃO === */
    :root {
        --primary: #d946ef;           /* Rosa/Purple principal */
        --primary-dark: #a21caf;     /* Versão escura */
        --secondary: #f472b6;        /* Rosa secundário */
        --accent: #fbbf24;           /* Dourado para destaques */
        --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        --text-dark: #1f2937;
        --text-light: #6b7280;
        --bg-light: #fef7ff;
        --white: #ffffff;
        --shadow: rgba(217, 70, 239, 0.2);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
    }

    /* === NAVBAR FIXA === */
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(217, 70, 239, 0.1);
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 20px var(--shadow);
    }

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

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }

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

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient);
        transition: width 0.3s ease;
    }

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

    .nav-links a.active {
        color: var(--primary);
        font-weight: 600;
    }

    .nav-links a.active::after {
        width: 100%;
    }

    /* === MENU MOBILE === */
    .mobile-menu-btn {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        gap: 0.3rem;
        z-index: 1001;
    }

    .mobile-menu-btn span {
        width: 25px;
        height: 3px;
        background: var(--primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1000;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-menu-links li {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s ease;
    }

    .mobile-menu.active .mobile-menu-links li {
        opacity: 1;
        transform: translateX(0);
    }

    .mobile-menu.active .mobile-menu-links li:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu.active .mobile-menu-links li:nth-child(2) { transition-delay: 0.2s; }
    .mobile-menu.active .mobile-menu-links li:nth-child(3) { transition-delay: 0.3s; }
    .mobile-menu.active .mobile-menu-links li:nth-child(4) { transition-delay: 0.4s; }
    .mobile-menu.active .mobile-menu-links li:nth-child(5) { transition-delay: 0.5s; }

    .mobile-menu-links a {
        color: var(--text-dark);
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        display: block;
    }

    .mobile-menu-links a:hover,
    .mobile-menu-links a.active {
        background: var(--bg-light);
        color: var(--primary);
        transform: translateX(10px);
    }

    .mobile-menu-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-dark);
        cursor: pointer;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* === HERO SECTION === */
    .hero {
        min-height: 100vh;
        background: linear-gradient(135deg, var(--bg-light) 0%, rgba(244, 114, 182, 0.1) 100%);
        display: flex;
        align-items: center;
        padding-top: 80px;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        right: -50%;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkles" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="%23d946ef" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="2s" repeatCount="indefinite"/></circle><circle cx="15" cy="8" r="0.5" fill="%23f472b6" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="1.5s" repeatCount="indefinite"/></circle><circle cx="8" cy="15" r="0.8" fill="%23fbbf24" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="2.5s" repeatCount="indefinite"/></circle></pattern></defs><rect width="100" height="100" fill="url(%23sparkles)"/></svg>') repeat;
        opacity: 0.3;
        animation: sparkle 20s linear infinite;
    }

    @keyframes sparkle {
        0% { transform: translateX(0) translateY(0); }
        100% { transform: translateX(-20px) translateY(-20px); }
    }

    .hero-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-content p {
        font-size: 1.2rem;
        color: var(--text-light);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-primary {
        padding: 1rem 2rem;
        background: var(--gradient);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px var(--shadow);
    }

    .btn-secondary {
        padding: 1rem 2rem;
        background: transparent;
        color: var(--primary);
        text-decoration: none;
        border: 2px solid var(--primary);
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

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

    .hero-image {
        position: relative;
        text-align: center;
    }

    .hero-image img {
        width: 100%;
        max-width: 400px;
        border-radius: 20px;
        box-shadow: 0 20px 60px var(--shadow);
        transition: transform 0.3s ease;
    }

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

    /* === SEÇÕES === */
    .section {
        padding: 5rem 0;
    }

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

    .section-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 3rem;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* === SERVIÇOS === */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .service-card {
        background: white;
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        border: 1px solid rgba(217, 70, 239, 0.1);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px var(--shadow);
    }

    .service-icon {
        width: 80px;
        height: 80px;
        background: var(--gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: white;
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .service-card p {
        color: var(--text-light);
        line-height: 1.6;
    }

    .service-price {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary);
        margin-top: 1rem;
    }

    /* === DEPOIMENTOS === */
    .testimonials-container {
        position: relative;
        max-width: 750px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 20px;
        padding: 0 40px; /* Espaço para as setas - reduzido */
    }

    .testimonials-slider {
        display: flex;
        transition: transform 0.6s ease-in-out;
    }

    .testimonial-slide {
        min-width: 100%;
        background: white;
        padding: 3rem 2rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border: 1px solid rgba(217, 70, 239, 0.1);
        position: relative;
        text-align: center;
    }

    .testimonial-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient);
    }

    .testimonial-slide .client-photo {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid var(--primary);
        padding: 3px;
        background: var(--gradient);
        margin: 0 auto 1.5rem;
        position: relative;
    }

    .testimonial-slide .client-photo::after {
        content: '';
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        background: var(--gradient);
        z-index: -1;
        animation: photoGlow 2s ease-in-out infinite alternate;
    }

    @keyframes photoGlow {
        0% { opacity: 0.3; transform: scale(0.95); }
        100% { opacity: 0.8; transform: scale(1.05); }
    }

    .testimonial-slide .client-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .testimonial-slide .client-info h4 {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .testimonial-slide .stars {
        display: flex;
        justify-content: center;
        gap: 0.3rem;
        margin-bottom: 1rem;
    }

    .testimonial-slide .stars i {
        color: var(--accent);
        font-size: 1.2rem;
        animation: starTwinkle 1.5s ease-in-out infinite;
        animation-delay: calc(var(--i) * 0.1s);
    }

    @keyframes starTwinkle {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.7; transform: scale(1.2); }
    }

    .testimonial-slide .service-type {
        font-size: 1rem;
        color: var(--primary);
        font-weight: 600;
        background: rgba(217, 70, 239, 0.1);
        padding: 0.5rem 1.2rem;
        border-radius: 25px;
        display: inline-block;
        margin-bottom: 1.5rem;
    }

    .testimonial-slide .testimonial-content p {
        color: var(--text-light);
        line-height: 1.8;
        font-style: italic;
        margin-bottom: 2rem;
        font-size: 1.1rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-slide .booking-highlight {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        color: var(--primary);
        font-weight: 600;
        font-size: 1rem;
        background: var(--bg-light);
        padding: 1rem 1.5rem;
        border-radius: 50px;
        border: 2px solid rgba(217, 70, 239, 0.2);
    }

    .testimonial-slide .booking-highlight i {
        font-size: 1.2rem;
        animation: bookingPulse 2s ease-in-out infinite;
    }

    @keyframes bookingPulse {
        0%, 100% { 
            opacity: 1; 
            transform: scale(1); 
        }
        50% { 
            opacity: 0.7; 
            transform: scale(1.2); 
        }
    }

    /* Navigation dots */
    .testimonial-dots {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(217, 70, 239, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: var(--primary);
        transform: scale(1.3);
    }

    .dot:hover {
        background: var(--primary);
        transform: scale(1.2);
    }

    /* Navigation arrows */
    .testimonial-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: white;
        border: 2px solid var(--primary);
        color: var(--primary);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .testimonial-nav:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-50%) scale(1.1);
    }

    .testimonial-nav.prev {
        left: 5px;
    }

    .testimonial-nav.next {
        right: 5px;
    }

    /* Auto-play indicator */
    .auto-play-indicator {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        background: rgba(255, 255, 255, 0.9);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        color: var(--primary);
        font-weight: 600;
    }

    /* === BOTÃO WHATSAPP FLUTUANTE === */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        min-width: 200px;
        height: 60px;
        background: #25d366;
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        padding: 0 1.5rem;
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        z-index: 1000;
        transition: all 0.3s ease;
        animation: beautyPulse 2s ease-in-out infinite;
        cursor: pointer;
        text-decoration: none;
        color: white;
        font-weight: 600;
        font-size: 1rem;
    }

    @keyframes beautyPulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        }
        50% {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6),
                        0 0 0 10px rgba(217, 70, 239, 0.1),
                        0 0 0 20px rgba(244, 114, 182, 0.05);
        }
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        animation: beautySparkle 0.6s ease-in-out;
        color: white;
        text-decoration: none;
    }

    @keyframes beautySparkle {
        0%, 100% { transform: scale(1.1) rotate(0deg); }
        25% { transform: scale(1.15) rotate(-2deg); }
        75% { transform: scale(1.15) rotate(2deg); }
    }

    .whatsapp-float i {
        color: white;
        font-size: 1.5rem;
    }

    .whatsapp-float::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: 30px;
        background: var(--gradient);
        z-index: -1;
        animation: beautyGlow 2s ease-in-out infinite alternate;
    }

    @keyframes beautyGlow {
        0% { opacity: 0; transform: scale(0.95); }
        100% { opacity: 0.7; transform: scale(1.05); }
    }

    /* === FORMULÁRIO DE CONTATO === */
    .contact-section {
        background: var(--bg-light);
    }

    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .contact-form {
        background: white;
        padding: 2rem;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        border: 1px solid rgba(217, 70, 239, 0.1);
    }

    .contact-form h3 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.4rem;
        font-weight: 500;
        color: var(--text-dark);
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 1px solid rgba(217, 70, 239, 0.2);
        border-radius: 8px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        background: #fafafa;
        font-family: inherit;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary);
        background: white;
        box-shadow: 0 0 0 2px rgba(217, 70, 239, 0.1);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-submit {
        width: 100%;
        padding: 0.9rem 2rem;
        background: var(--gradient);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px var(--shadow);
    }

    .contact-info h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        background: var(--gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
    }

    /* === FOOTER === */
    .footer {
        background: var(--text-dark);
        color: white;
        padding: 3rem 0 1rem;
    }

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

    .footer-section h3 {
        margin-bottom: 1rem;
        color: var(--secondary);
    }

    .footer-section p, .footer-section a {
        color: #9ca3af;
        text-decoration: none;
        line-height: 1.8;
    }

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

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #374151;
        color: #9ca3af;
    }
    .footer {
        background: var(--text-dark);
        color: white;
        padding: 3rem 0 1rem;
    }

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

    .footer-section h3 {
        margin-bottom: 1rem;
        color: var(--secondary);
    }

    .footer-section p, .footer-section a {
        color: #9ca3af;
        text-decoration: none;
        line-height: 1.8;
    }

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

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #374151;
        color: #9ca3af;
    }

    /* === RESPONSIVO === */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .mobile-menu-btn {
            display: flex;
        }

        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 2rem;
        }

        .hero-content h1 {
            font-size: 2.5rem;
        }

        .cta-buttons {
            justify-content: center;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .testimonial-nav {
            display: none;
        }

        .testimonials-container {
            margin: 0 1rem;
            padding: 0 15px;
        }

        .testimonial-slide {
            padding: 2rem 1rem;
        }

        .contact-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .contact-form {
            padding: 1.5rem;
        }

        .whatsapp-float {
            min-width: 160px;
            height: 50px;
            bottom: 15px;
            right: 15px;
            font-size: 0.9rem;
            padding: 0 1rem;
        }

        .whatsapp-float i {
            font-size: 1.2rem;
        }
    }

    /* === ANIMAÇÕES DE ENTRADA === */
    .fade-in-up {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }