        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul {
            list-style: none;
        }

        /* Container */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Typography */
        h1, h2, h3 {
            font-family: Tahoma, Geneva, Verdana, sans-serif;
            margin-bottom: 1rem;
            color: #be123c;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
        }

        h3 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1rem;
        }

        .highlight {
            color: #e83f81;
            font-weight: 700;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary {
            background-color: #e83f81;
            color: #fff;
        }

        .btn-primary:hover {
            background-color: #d72f70;
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid #e83f81;
            color: #e83f81;
        }

        .btn-secondary:hover {
            background-color: #e83f81;
            color: #fff;
        }

        /* Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: #fce7f3;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
			background-color: #fce7f3;
        }

        .navbar .logo {
            font-size: 3.0rem;
            font-weight: 700;
            color: #e83f81;
        }

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

        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: #e83f81;
        }


        /* Mobile menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: #fce7f3;  /* #e83f81; */
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 0;
            background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('LogoPulseritasMagicas.png ') no-repeat center center/cover;
            /* background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('https://placehold.co/1920x1080/ffe6f4/e83f81?text=Pulseritas+M%C3%A1gicas ') no-repeat center center/cover; */
        }

        .hero-content {
            text-align: center;
            max-width: 800px;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .hero .btn {
            margin: 0 10px;
        }


        /* Features Section */
        .features {
            padding: 80px 0;
			background: linear-gradient(to right, #fce7f3, #f8bde4);  /* background-color: #fce7f3; */
        }

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

        .feature-item {
            background-color: #fff8fb;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            background-color: #e83f81;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

       
       .icon {
            font-size: 3em;
            color: #C5A3FF; /* Lila Claro */
        }

        .feature-icon svg {
            width: 60px;
            height: 60px;
        }

        /* Products Section */
        .products {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

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

        .product-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

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

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 1.5rem;
        }

        /* Process Section */
        .process {
            padding: 80px 0;
			background: linear-gradient(to right, #fce7f3, #f8bde4);  /* background-color: #fff; */
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: #e83f81;
        }

        .process-step {
            background-color: #fff;
            border: 2px solid #e83f81;
            border-radius: 10px;
            padding: 2rem;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .process-step:nth-child(even) {
            align-items: center;
        }

        .process-step:hover {
            transform: translateY(-10px);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background-color: #e83f81;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            z-index: 2;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .testimonial {
            background-color: #fff8fb;
            border-left: 5px solid #e83f81;
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            position: relative;
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: 0;
            left: 15px;
            font-size: 4rem;
            opacity: 0.2;
            color: #e83f81;
        }

        .testimonial::after {
            content: '"';
            position: absolute;
            bottom: 0;
            right: 15px;
            font-size: 4rem;
            opacity: 0.2;
            color: #e83f81;
        }



        /* Testimonials Section */
        .testimonials-slider {
            /* Implementar un carrusel JS o mostrar como lista */
            display: flex;
            overflow-x: auto; /* Para scroll horizontal en mobile si hay muchos */
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            gap: 20px;
            padding-bottom: 20px; /* Espacio para la barra de scroll */
        }

        .testimonial-item {
            flex: 0 0 90%; /* Ocupa 90% del ancho en móviles */
            max-width: 400px; /* Ancho máximo en desktop */
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: left;
            scroll-snap-align: start;
        }

        .testimonial-item p {
            font-style: italic;
            margin-bottom: 15px;
            color: #555;
        }

        .testimonial-item .author {
            font-weight: bold;
            color: var(--color-primary);
        }




        /* WhatsApp Section */
        .whatsapp {
            padding: 80px 0;
            background: linear-gradient(135deg, #ffe6f4, #fff0f8);
            text-align: center;
        }

        .whatsapp h2 {
            margin-bottom: 1.5rem;
        }

        .whatsapp p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .whatsapp .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .whatsapp .btn svg {
            width: 24px;
            height: 24px;
        }

        /* Gallery Section */
        .gallery {
            padding: 80px 0;
            background-color: #fff;
        }

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

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(232, 63, 129, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .overlay svg {
            width: 40px;
            height: 40px;
            color: #fff;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .contact-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
            text-align: center;
        }

        .contact-content h2 {
            margin-bottom: 1.5rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-info a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #333;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: #e83f81;
        }

        .contact-info svg {
            width: 20px;
            height: 20px;
        }



        /* Footer */
        footer {
            background-color: #e83f81;
            color: #fff;
            padding: 40px 0;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
        }

        .footer-content p {
            margin: 0;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e83f81;
            transition: background-color 0.3s ease;
        }

        .social-icons a:hover {
            background-color: #fff8fb;
        }

        .social-icons svg {
            width: 16px;
            height: 16px;
        }



        /* Responsive Design */
        @media (max-width: 992px) {
			.navbar .logo {
				font-size: 2.0rem;
			}

            .nav-links {
                display: none;
                flex-direction: column;
                background-color: #fff;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                padding: 2rem;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .features-grid,
            .products-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .process-steps::before {
                left: 15%;
            }

            .process-step {
                margin-left: 30%;
                width: 70%;
            }

            .process-step:nth-child(even) {
                margin-left: 0;
                margin-right: 30%;
            }
        }

        @media (max-width: 768px) {
			.navbar .logo {
				font-size: 2.0rem;
			}
            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.5rem;
            }

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

            .hero p {
                font-size: 1rem;
            }

            .process-steps::before {
                left: 10%;
            }

            .process-step {
                margin-left: 20%;
                width: 80%;
            }

            .process-step:nth-child(even) {
                margin-left: 0;
                margin-right: 20%;
            }
        }

        @media (max-width: 576px) {
			.navbar .logo {
				font-size: 2.0rem;
			}
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 0.9rem;
            }

            .process-steps::before {
                left: 5%;
            }

            .process-step {
                margin-left: 10%;
                width: 90%;
            }

            .process-step:nth-child(even) {
                margin-left: 0;
                margin-right: 10%;
            }
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            width: 66px;
            height: 66px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        .whatsapp-float svg {
            width: 30px;
            height: 30px;
        }