    :root {
        --primary: #d66e85;
        --primary-dark: #b85569;
        --primary-light: #fff0f3;
        --secondary: #8b4b5a;
        --accent: #f4a261;
        --dark: #1a1a1a;
        --gray: #6b7280;
        --light-bg: #fafafa;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        color: var(--dark);
        background: #fff;
        overflow-x: hidden;
        line-height: 1.6;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        line-height: 1.2;
    }

    /* Particles Background */
    #particles-js {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 0;
    }

    /* Header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    header.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

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

    .logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
    }

    .logo img {
        height: 50px;
        width: auto;
    }

    .logo-text {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--secondary);
    }

    nav {
        display: flex;
        gap: 2.5rem;
        align-items: center;
    }

    nav a {
        text-decoration: none;
        color: var(--gray);
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.3s;
        position: relative;
    }

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

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

    nav a:hover::after {
        width: 100%;
    }

    .btn {
        padding: 0.875rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
        display: inline-block;
        font-size: 0.95rem;
        border: none;
        cursor: pointer;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: white;
        box-shadow: 0 10px 30px rgba(214, 110, 133, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(214, 110, 133, 0.4);
    }

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

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

    .menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--dark);
        cursor: pointer;
    }

    /* Hero Section */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 8rem 2rem 4rem;
        overflow: hidden;
        background: linear-gradient(135deg, #fff0f3 0%, #ffffff 50%, #fef3f0 100%);
    }

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

    .hero-content h1 {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        margin-bottom: 1.5rem;
        color: var(--dark);
        line-height: 1.1;
    }

    .hero-content .highlight {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-content p {
        font-size: clamp(1.125rem, 2vw, 1.375rem);
        color: var(--gray);
        margin-bottom: 2.5rem;
        max-width: 600px;
        line-height: 1.7;
    }

    .hero-buttons {
        display: flex;
        gap: 1.25rem;
        flex-wrap: wrap;
        margin-bottom: 3rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary);
        font-family: 'Playfair Display', serif;
    }

    .stat-label {
        font-size: 0.875rem;
        color: var(--gray);
        margin-top: 0.5rem;
    }

    .hero-showcase {
        position: relative;
    }

    .showcase-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .showcase-card {
        background: white;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s ease;
        cursor: pointer;
    }

    .showcase-card:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .showcase-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .showcase-card-info {
        padding: 1.25rem;
        text-align: center;
    }

    .showcase-card-info h4 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
        color: var(--dark);
    }

    .showcase-card-info p {
        font-size: 0.875rem;
        color: var(--gray);
    }

    /* Features Section */
    .features {
        padding: 6rem 2rem;
        background: white;
    }

    .section-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 4rem;
    }

    .section-tag {
        display: inline-block;
        padding: 0.5rem 1.5rem;
        background: var(--primary-light);
        color: var(--primary);
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .section-header h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1rem;
        color: var(--dark);
    }

    .section-header p {
        font-size: 1.125rem;
        color: var(--gray);
        line-height: 1.7;
    }

    .features-grid {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }

    .feature-card {
        background: white;
        padding: 2.5rem;
        border-radius: 24px;
        border: 1px solid #f0f0f0;
        transition: all 0.4s ease;
        text-align: center;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-light);
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        background: linear-gradient(135deg, var(--primary-light), #fff);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: var(--primary);
        transition: all 0.4s ease;
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.1) rotate(5deg);
    }

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

    .feature-card p {
        color: var(--gray);
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Gallery Section */
    .gallery {
        padding: 6rem 2rem;
        background: var(--light-bg);
    }

    .gallery-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .gallery-filters {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 0.75rem 1.75rem;
        background: white;
        border: 2px solid #e5e5e5;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 0.95rem;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }

    .gallery-item {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
    }

    .gallery-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .gallery-item img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        padding: 2rem 1.5rem 1.5rem;
        transform: translateY(100%);
        transition: transform 0.4s ease;
    }

    .gallery-item:hover .gallery-overlay {
        transform: translateY(0);
    }

    .gallery-overlay h4 {
        color: white;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .gallery-overlay p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.875rem;
    }

    .gallery-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: var(--primary);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    /* Process Section */
    .process {
        padding: 6rem 2rem;
        background: white;
    }

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

    .process-timeline {
        position: relative;
        padding: 2rem 0;
    }

    .process-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary), var(--accent));
    }

    .process-step {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 4rem;
        position: relative;
    }

    .process-step:nth-child(even) .process-content {
        order: 2;
    }

    .process-step:nth-child(even) .process-icon-wrapper {
        order: 1;
    }

    .process-content {
        padding: 2rem;
        background: white;
        border-radius: 20px;
        border: 2px solid #f0f0f0;
        transition: all 0.4s ease;
    }

    .process-content:hover {
        border-color: var(--primary);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .process-number {
        display: inline-block;
        width: 40px;
        height: 40px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        text-align: center;
        line-height: 40px;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .process-content h3 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        color: var(--dark);
    }

    .process-content p {
        color: var(--gray);
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .process-time {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: var(--primary-light);
        color: var(--primary);
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
    }

    .process-icon-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .process-icon {
        width: 120px;
        height: 120px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: white;
        box-shadow: 0 20px 60px rgba(214, 110, 133, 0.3);
    }

    /* Testimonials */
    .testimonials {
        padding: 6rem 2rem;
        background: var(--light-bg);
    }

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

    .testimonial-card {
        background: white;
        padding: 3rem;
        border-radius: 24px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        text-align: center;
    }

    .testimonial-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin: 0 auto 1.5rem;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        font-weight: 700;
    }

    .testimonial-text {
        font-size: 1.125rem;
        color: var(--gray);
        line-height: 1.8;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

    .testimonial-author {
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 0.25rem;
    }

    .testimonial-event {
        color: var(--gray);
        font-size: 0.875rem;
    }

    .testimonial-stars {
        color: #fbbf24;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    /* CTA Section */
    .cta {
        padding: 6rem 2rem;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        color: white;
        text-align: center;
    }

    .cta-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .cta h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1.5rem;
    }

    .cta p {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        opacity: 0.95;
    }

    .cta-pricing-info {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 24px;
        padding: 3rem;
        margin: 3rem 0;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .cta-pricing-info h3 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        color: white;
        text-align: center;
    }

    .pricing-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .pricing-column {
        background: rgba(255, 255, 255, 0.95);
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .pricing-column:hover {
        transform: translateY(-8px);
    }

    .pricing-column h4 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: var(--primary);
        text-align: center;
    }

    .pricing-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .pricing-column li {
        padding: 0.75rem 0;
        color: var(--dark);
        font-size: 1rem;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
        padding-left: 1.75rem;
    }

    .pricing-column li:last-child {
        border-bottom: none;
    }

    .pricing-column li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--primary);
        font-weight: bold;
        font-size: 1.2rem;
    }

    .pricing-note {
        background: rgba(255, 255, 255, 0.15);
        padding: 1.5rem;
        border-radius: 16px;
        font-size: 1.1rem;
        line-height: 1.8;
        border: 1px solid rgba(255, 255, 255, 0.3);
        text-align: center;
    }

    .pricing-note strong {
        font-size: 1.3rem;
        display: inline-block;
        margin-bottom: 0.5rem;
    }

    .cta .btn-outline {
        border-color: white;
        color: white;
    }

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

    /* Contact Section */
    .contact {
        padding: 6rem 2rem;
        background: white;
    }

    .contact-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .contact-card {
        background: white;
        padding: 3rem 2rem;
        border-radius: 24px;
        border: 2px solid #f0f0f0;
        text-align: center;
        transition: all 0.4s ease;
    }

    .contact-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.5rem;
        background: var(--primary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--primary);
    }

    .contact-card h4 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--dark);
    }

    .contact-card p,
    .contact-card a {
        color: var(--gray);
        text-decoration: none;
        transition: color 0.3s;
    }

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

    /* Footer */
    footer {
        background: #1a1a1a;
        color: white;
        padding: 2rem;
        text-align: center;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .social-links {
        display: flex;
        gap: 1.5rem;
    }

    .social-links a {
        color: white;
        font-size: 1.5rem;
        transition: all 0.3s;
    }

    .social-links a:hover {
        color: var(--primary);
        transform: translateY(-3px);
    }

    /* Floating WhatsApp */
    .whatsapp-float {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        width: 65px;
        height: 65px;
        background: #25d366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
        z-index: 999;
        transition: all 0.3s;
        animation: pulse 2s infinite;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 15px 50px rgba(37, 211, 102, 0.5);
    }

    @keyframes pulse {

        0%,
        100% {
            box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
        }

        50% {
            box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6), 0 0 0 20px rgba(37, 211, 102, 0.1);
        }
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero-container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .hero-showcase {
            max-width: 600px;
            margin: 0 auto;
        }

        .process-timeline::before {
            left: 30px;
        }

        .process-step {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .process-step:nth-child(even) .process-content,
        .process-step:nth-child(even) .process-icon-wrapper {
            order: initial;
        }

        .process-icon-wrapper {
            justify-content: flex-start;
            padding-left: 0;
        }
    }

    @media (max-width: 768px) {
        nav {
            position: fixed;
            top: 80px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 80px);
            background: white;
            flex-direction: column;
            padding: 2rem;
            transition: left 0.3s;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        nav.active {
            left: 0;
        }

        .menu-toggle {
            display: block;
        }

        .hero {
            padding: 6rem 1.5rem 3rem;
        }

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

        .hero-content p {
            font-size: 1.125rem;
        }

        .hero-stats {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

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

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

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

        .hero-buttons {
            flex-direction: column;
        }

        .btn {
            width: 100%;
            text-align: center;
        }

        .footer-content {
            flex-direction: column;
            text-align: center;
        }

        .section-header h2 {
            font-size: 2rem;
        }

        .whatsapp-float {
            bottom: 1rem;
            right: 1rem;
            width: 55px;
            height: 55px;
            font-size: 1.75rem;
        }

        .cta-pricing-info {
            padding: 2rem 1.5rem;
        }

        .cta-pricing-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .pricing-features {
            gap: 1.5rem;
        }

        .pricing-column {
            padding: 1.75rem;
        }

        .pricing-column h4 {
            font-size: 1.25rem;
        }

        .pricing-column li {
            font-size: 0.95rem;
        }

        .pricing-note {
            font-size: 1rem;
            padding: 1.25rem;
        }

        .pricing-note strong {
            font-size: 1.15rem;
        }
    }

    /* Scroll Progress Bar */
    .scroll-progress {
        left: 0;
        width: 0%;
        height: 4px;
        background: linear-gradient(to right, var(--primary), var(--accent));
        z-index: 9999;
        transition: width 0.1s ease;
    }