        :root{
            --rosa-principal:#d94d92;
            --rosa-suave:#f9e6ef;
            --rosa-claro:#fff5f9;
            --verde:#6ea04b;
            --verde-oscuro:#4d7a34;
            --texto:#3b3b3b;
            --gris:#6f6f6f;
            --blanco:#ffffff;
            --sombra:0 10px 30px rgba(0,0,0,.08);
            --radio:22px;
        }

        *{
            margin:0;
            padding:0px;
            box-sizing:border-box;
        }

        body{
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            color:var(--texto);
            background:
                radial-gradient(circle at top left, rgba(217,77,146,.10), transparent 25%),
                radial-gradient(circle at bottom right, rgba(110,160,75,.10), transparent 20%),
                #fff;
            line-height:1.6;
        }

        a{
            text-decoration:none;
        }

        img{
            max-width:100%;
            display:block;
        }

        .container{
            width:min(1140px, 92%);
            margin:auto;
        }

        /* HEADER */
        .topbar{
            background:var(--blanco);
            border-bottom:1px solid #f1dce7;
            position:sticky;
            top:0;
            z-index:1000;
            backdrop-filter: blur(8px);
        }

        .nav{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:20px;
            padding:14px 0;
			
        }

        .brand{
            display:flex;
            align-items:center;
            gap:14px;
        }

     .brand img{
    height:80px;
    width:auto;
    margin-right:10px;
}

        .brand-text h1{
            font-size:1.5rem;
            line-height:1.1;
            color:var(--rosa-principal);
            font-weight:700;
        }

        .brand-text span{
            display:block;
            color:var(--verde);
            font-size:.9rem;
            letter-spacing:2px;
            text-transform:uppercase;
        }

     

        .btn{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            gap:8px;
            padding:14px 24px;
            border-radius:999px;
            font-weight:700;
            transition:.25s;
        }

        .btn-primary{
            background:linear-gradient(135deg, var(--rosa-principal), #ef76b0);
            color:#fff;
            box-shadow:0 10px 25px rgba(217,77,146,.25);
        }

        .btn-primary:hover{
            transform:translateY(-2px);
        }

        .btn-outline{
            border:2px solid var(--verde);
            color:var(--verde);
            background:#fff;
        }

        .btn-outline:hover{
            background:var(--verde);
            color:#fff;
        }

        /* HERO */
        .hero{
            padding:70px 0 50px;
        }

        .hero-grid{
            display:grid;
            grid-template-columns:1.1fr .9fr;
            gap:40px;
            align-items:center;
        }

        .tag{
            display:inline-block;
            padding:8px 16px;
            border-radius:999px;
            background:var(--rosa-suave);
            color:var(--rosa-principal);
            font-weight:700;
            margin-bottom:18px;
        }

        .hero h2{
            font-size:3rem;
            line-height:1.1;
            margin-bottom:18px;
            color:#4a3a43;
        }

        .hero h2 .accent{
            color:var(--rosa-principal);
        }

        .hero p{
            font-size:1.08rem;
            color:var(--gris);
            margin-bottom:28px;
            max-width:620px;
        }

        .hero-actions{
            display:flex;
            gap:14px;
            flex-wrap:wrap;
            margin-bottom:25px;
        }

        .hero-features{
            display:flex;
            flex-wrap:wrap;
            gap:14px;
        }

        .feature-pill{
            background:#fff;
            border:1px solid #f1dce7;
            padding:10px 14px;
            border-radius:999px;
            box-shadow:var(--sombra);
            font-size:.95rem;
            color:#5d5d5d;
        }

        .hero-card{
            background:linear-gradient(180deg, #fff, #fff8fb);
            border:1px solid #f3dce7;
            border-radius:30px;
            padding:20px;
            box-shadow:var(--sombra);
            position:relative;
            overflow:hidden;
        }

        .hero-card::before{
            content:"";
            position:absolute;
            inset:auto -60px -60px auto;
            width:180px;
            height:180px;
            background:rgba(217,77,146,.08);
            border-radius:50%;
        }

        .hero-card img{
            border-radius:24px;
            object-fit:cover;
            width:100%;
            min-height:460px;
            background:#f8f0f4;
        }
        
		 /* 📱 Tablets */
@media (max-width: 992px){
    .hero-card img{
        height:380px;
        border-radius:20px;
    }
}

@media (max-width: 576px){
    .hero-card img{
        aspect-ratio: 1/1; /* más cuadrado en celular */
        border-radius:16px;
    }
} 
        /* SECTION TITLE */
        .section{
            padding:70px 0;
        }

        .section-title{
            text-align:center;
            margin-bottom:38px;
        }

        .section-title h3{
            font-size:2.1rem;
            color:#4a3a43;
            margin-bottom:10px;
        }

        .section-title p{
            color:var(--gris);
            max-width:760px;
            margin:auto;
        }

        /* SERVICES */
        .services{
            display:grid;
            grid-template-columns:repeat(4,1fr);
            gap:20px;
        }

        .card{
            background:#fff;
            border-radius:var(--radio);
            padding:28px 22px;
            box-shadow:var(--sombra);
            border:1px solid #f5e5ec;
            transition:.25s;
        }

        .card:hover{
            transform:translateY(-6px);
        }

        .icon{
            width:56px;
            height:56px;
            border-radius:18px;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:1.5rem;
            background:var(--rosa-suave);
            color:var(--rosa-principal);
            margin-bottom:18px;
        }

        .card h4{
            font-size:1.15rem;
            margin-bottom:10px;
            color:#4c3a43;
        }

        .card p{
            color:var(--gris);
            font-size:.97rem;
        }

        /* WHY */
        .why{
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:26px;
        }

        .why-box{
            background:linear-gradient(180deg, #fff, #fffafc);
            border:1px solid #f3dce7;
            border-radius:28px;
            padding:34px;
            box-shadow:var(--sombra);
        }

        .why-box ul{
            list-style:none;
            margin-top:18px;
        }

        .why-box li{
            padding:12px 0;
            border-bottom:1px dashed #ead6df;
            color:#5f5f5f;
        }

        .why-box li:last-child{
            border-bottom:none;
        }

        /* CTA */
        .cta{
            padding:70px 0;
        }

        .cta-box{
            background:linear-gradient(135deg, #fff0f6, #fff, #f5ffeef0);
            border:1px solid #f1dbe7;
            border-radius:34px;
            padding:45px 32px;
            text-align:center;
            box-shadow:var(--sombra);
        }

        .cta-box h3{
            font-size:2rem;
            margin-bottom:12px;
            color:#4b3a44;
        }

        .cta-box p{
            max-width:800px;
            margin:0 auto 24px;
            color:var(--gris);
        }

        /* CONTACT */
        .contact-grid{
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:26px;
        }

        .contact-box{
            background:#fff;
            border-radius:28px;
            padding:32px;
            box-shadow:var(--sombra);
            border:1px solid #f3dce7;
        }

        .contact-item{
            display:flex;
            gap:14px;
            align-items:flex-start;
            margin-bottom:22px;
        }

        .contact-item:last-child{
            margin-bottom:0;
        }

        .contact-icon{
            width:52px;
            height:52px;
            min-width:52px;
            border-radius:50%;
            background:var(--rosa-suave);
            color:var(--rosa-principal);
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:1.25rem;
            font-weight:700;
        }

        .contact-item h5{
            font-size:1rem;
            margin-bottom:4px;
            color:#4c3a43;
        }

        .contact-item p,
        .contact-item a{
            color:var(--gris);
            font-size:1rem;
        }

        .contact-item a:hover{
            color:var(--rosa-principal);
        }

        .socials{
            display:flex;
            gap:14px;
            flex-wrap:wrap;
            margin-top:20px;
        }

        .socials a{
            padding:12px 18px;
            border-radius:999px;
            background:#fff;
            border:1px solid #efdae4;
            color:var(--rosa-principal);
            font-weight:700;
            transition:.25s;
        }

        .socials a:hover{
            background:var(--rosa-principal);
            color:#fff;
        }

        /* FOOTER */
        footer{
            margin-top:30px;
            padding:28px 0 38px;
            text-align:center;
            color:#7a6c73;
            border-top:1px solid #f1dce7;
        }

        /* RESPONSIVE */
        @media (max-width: 980px){
            .hero-grid,
            .why,
            .contact-grid{
                grid-template-columns:1fr;
            }

            .services{
                grid-template-columns:repeat(2,1fr);
            }

            .hero h2{
                font-size:2.3rem;
            }

            .menu{
                display:none;
            }
        }

        @media (max-width: 640px){
            .services{
                grid-template-columns:1fr;
            }

            .hero{
                padding-top:40px;
            }

            .hero h2{
                font-size:1.9rem;
            }

            .brand-text h1{
                font-size:1.2rem;
            }

            .brand img{
                width:58px;
                height:58px;
            }

            .cta-box h3{
                font-size:1.5rem;
            }
        }
		
		
		.service-img{
    width:100%;
    height:170px;
    overflow:hidden;
    border-radius:16px;
    margin-bottom:15px;
    position:relative;
}

.service-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

/* efecto zoom */
.card:hover .service-img img{
    transform:scale(1.1);
}

/* flash effect */
.service-img::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:50%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    transform:skewX(-25deg);
}

/* animacion flash */
.card:hover .service-img::after{
    animation:flash 0.8s;
}

@keyframes flash{
    100%{
        left:125%;
    }
}
.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#d94d92;
}
@media (max-width: 980px){

    .menu-toggle{
        display:block;
    }

    .menu{
        position:absolute;
        top:70px;
        right:0;
        background:white;
        width:100%;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:25px;
        display:none;
        box-shadow:0 10px 20px rgba(0,0,0,0.1);
    }

    .menu.active{
        display:flex;
    } 

}


/*==========================
MENU
==========================*/

.menu{
    display:flex;
    align-items:center;
    gap:12px;
}

.menu-item{
    position:relative;
}

.menu-item>a{
    display:block;
    padding:18px 0;
    color:#333;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.menu-item>a:hover{
    color:#d94d92;
}

/*==========================
SUBMENU NORMAL
==========================*/

.submenu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:240px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    padding:10px 0;
    z-index:999;
}

.menu-item:hover>.submenu{
    display:block;
}

.submenu .menu-item>a{
    padding:10px 18px;
    font-size:14px;
    white-space:nowrap;
}

.submenu .menu-item>a:hover{
    background:#f7f7f7;
}



/*==============================
MEGA MENU 4 COLUMNAS
==============================*/

.menu-item{
    position:relative;
}

.mega-menu{

    position:absolute;
    left:20;
    top:100%;

    width:700px;
    max-width:95vw;

    background:#fff;

    display:none;

    grid-template-columns:
        1fr
        1fr
        1fr
        30px;

    gap:25px;

    padding:50px;

    border-radius:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

    z-index:99999;

}

.menu-item:hover>.mega-menu{
    display:grid;
}

/************************/

.mega-column h3{

    font-size:16px;

    color:#d94d92;

    margin-bottom:15px;

    text-transform:uppercase;

    letter-spacing:1px;

    border-bottom:2px solid #f3f3f3;

    padding-bottom:8px;

}

.mega-column a{

    display:block;

    color:#444;

    text-decoration:none;

    padding:8px 0;

    transition:.25s;

    font-size:15px;

}

.mega-column a:hover{

    color:#d94d92;

    padding-left:8px;

}

/************************/

.mega-banner{

    border-radius:12px;

    overflow:hidden;

    background:#fafafa;

}

.mega-banner img{

    width:100%;

    height:200px;

    object-fit:cover;
	
	

}

.mega-banner h4{

    margin-top:15px;

    color:#d94d92;

}

.mega-banner p{

    color:#666;

    font-size:12px;

    line-height:1.6;

}

/************************/

@media(max-width:700px){

.mega-menu{

    width:100%;

    grid-template-columns:1fr;

}

.mega-banner img{

    height:500px;

}

}


.hero-slider{
    position:relative;
    width:100%;
    min-height:650px;
    overflow:hidden;
    background:#fdf7fa;
}

.slides{
    position:relative;
    width:100%;
    height:650px;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:opacity .8s ease, visibility .8s ease, transform .8s ease;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    transform:scale(1.03);
}

.slide.active{
    opacity:1;
    visibility:visible;
    transform:scale(1);
    z-index:2;
}

.slide .overlay{
    position:absolute;
    inset:0;
   /* background:
        linear-gradient(90deg, rgba(52,30,41,.72) 0%, rgba(52,30,41,.48) 38%, rgba(52,30,41,.20) 100%),
        linear-gradient(180deg, rgba(217,77,146,.10), rgba(110,160,75,.08));*/
}

.slide-content{
    position:relative;
    z-index:3;
    min-height:650px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    color:#fff;
    max-width:760px;
} 

.slide-tag{
    display:inline-block;
    background:rgba(255,255,255,.16);
    color:#fff;
    border:1px solid rgba(255,255,255,.28);
    padding:10px 18px;
    border-radius:999px;
    font-weight:700;
    letter-spacing:.4px;
    margin-bottom:18px;
    backdrop-filter:blur(6px);
}

.slide-content h2{
    font-size:3.3rem;
    line-height:1.08;
    margin-bottom:18px;
    font-weight:800;
    text-shadow:0 3px 12px rgba(0,0,0,.18);
}

.slide-content p{
    font-size:1.08rem;
    line-height:1.7;
    max-width:640px;
    color:rgba(255,255,255,.94);
    margin-bottom:28px;
}

.slide-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.btn-outline.light{
    border:2px solid rgba(255,255,255,.72);
    color:#fff;
    background:transparent;
}

.btn-outline.light:hover{
    background:#fff;
    color:var(--rosa-principal);
    border-color:#fff;
}

.slider-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:5;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    color:#fff;
    font-size:24px;
    cursor:pointer;
    backdrop-filter:blur(6px);
    transition:.25s ease;
    display:flex;
    align-items:center;
    justify-content:center;
}

.slider-arrow:hover{
    background:rgba(255,255,255,.30);
}

.slider-arrow.prev{
    left:20px;
}

.slider-arrow.next{
    right:20px;
}

.slider-dots{
    position:absolute;
    left:50%;
    bottom:26px;
    transform:translateX(-50%);
    z-index:5;
    display:flex;
    align-items:center;
    gap:10px;
}

.dot{
    width:13px;
    height:13px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.45);
    cursor:pointer;
    transition:.25s ease;
}

.dot.active{
    background:#fff;
    transform:scale(1.2);
}

/* Responsive */
@media (max-width: 980px){
    .hero-slider,
    .slides,
    .slide-content{
        min-height:540px;
        height:540px;
    }

    .slide-content{
        max-width:100%;
        padding-top:30px;
        padding-bottom:50px;
    }

    .slide-content h2{
        font-size:2.35rem;
    }

    .slide-content p{
        font-size:1rem;
        max-width:100%;
    }
}

@media (max-width: 640px){
    .hero-slider,
    .slides,
    .slide-content{
        min-height:500px;
        height:500px;
    }

    .slide{
        background-position:center center;
    }

    .slide-content{
        align-items:flex-start;
        justify-content:center;
    }

    .slide-tag{
        font-size:.85rem;
        padding:8px 14px;
        margin-bottom:14px;
    }

    .slide-content h2{
        font-size:1.8rem;
        line-height:1.15;
        margin-bottom:14px;
    }

    .slide-content p{
        font-size:.95rem;
        line-height:1.55;
        margin-bottom:22px;
    }

    .slide-buttons{
        gap:10px;
    }

    .slide-buttons .btn{
        width:100%;
        justify-content:center;
    }

    .slider-arrow{
        width:42px;
        height:42px;
        font-size:20px;
    }

    .slider-arrow.prev{
        left:10px;
    }

    .slider-arrow.next{
        right:10px;
    }

    .slider-dots{
        bottom:18px;
    }
}

.whatsapp-circle{
    position:fixed;
    right:18px;
    bottom:18px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
    box-shadow:0 10px 25px rgba(37,211,102,.35);
    animation:whatsappPulse 2s infinite;
}

.whatsapp-circle svg{
    width:30px;
    height:30px;
}

.whatsapp-circle:hover{
    color:#fff;
    transform:scale(1.08);
}

.clientes-section{
    padding:70px 0;
    background:linear-gradient(180deg,#fff,#fff7fb);
}

/* Estadísticas */

.clientes-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:30px;
    margin-bottom:50px;
}

.stat{
    text-align:center;
    padding:25px;
    border-radius:16px;
    background:white;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.stat h4{
    font-size:32px;
    color:#d94d92;
    margin-bottom:5px;
}

.stat p{
    color:#666;
    font-size:14px;
}

/* Testimonios */

.testimonios{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.testimonio{
    background:white;
    padding:25px;
    border-radius:16px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    position:relative;
}

.testimonio::before{
    content:"“";
    font-size:50px;
    color:#d94d92;
    position:absolute;
    top:10px;
    left:15px;
    opacity:.2;
}

.testimonio p{
    margin-bottom:15px;
    color:#555;
    line-height:1.6;
}

.testimonio span{
    font-weight:600;
    color:#4a6741;
}

/* Responsive */

@media(max-width:900px){

.clientes-stats{
grid-template-columns:repeat(2,1fr);
}

.testimonios{
grid-template-columns:1fr;
}

}




/* hero */
.page-hero{
    padding:60px 0 40px;
}
.page-hero-box{
    background:linear-gradient(135deg,#fff0f6,#fff,#f8fff3);
    border:1px solid #f1dbe7;
    border-radius:32px;
    padding:44px 30px;
    box-shadow:var(--sombra);
    text-align:center;
}
.page-hero-box .tag{
    display:inline-block;
    padding:8px 16px;
    border-radius:999px;
    background:var(--rosa-suave);
    color:var(--rosa-principal);
    font-weight:700;
    margin-bottom:16px;
}
.page-hero-box h2{
    font-size:2.4rem;
    color:#4a3a43;
    margin-bottom:12px;
}
.page-hero-box p{
    color:var(--gris);
    max-width:780px;
    margin:auto;
}
.page-links{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    margin-top:22px;
}
.page-links a{
    padding:10px 16px;
    border-radius:999px;
    background:#fff;
    border:1px solid #f0dbe5;
    color:var(--rosa-principal);
    font-weight:700;
}
.page-links a:hover{
    background:var(--rosa-principal);
    color:#fff;
}

/* gallery */
.section{
    padding:30px 0 70px;
}
.category-block{
    margin-bottom:50px;
}
.category-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:20px;
    flex-wrap:wrap;
}
.category-title{
    font-size:1.9rem;
    color:#4a3a43;
}
.category-sub{
    color:var(--gris);
}
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}
.product-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--sombra);
    border:1px solid #f5e5ec;
    transition:.25s;
}
.product-card:hover{
    transform:translateY(-6px);
}
.product-image{
    position:relative;
    overflow:hidden;
    height:280px;
    background:#f8f0f4;
}
.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .45s ease;
}
.product-card:hover .product-image img{
    transform:scale(1.08);
}
.product-image::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:45%;
    height:100%;
    background:linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
    transform:skewX(-25deg);
}
.product-card:hover .product-image::after{
    animation:flash 0.8s;
}
@keyframes flash{
    100%{left:125%}
}

.share-bar{
    position:absolute;
    right:14px;
    bottom:14px;
    display:flex;
    flex-direction:column;
    gap:8px;
    z-index:3;
}
.share-btn{
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.92);
    color:var(--rosa-principal);
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    transition:.25s;
}
.share-btn:hover{
    transform:scale(1.08);
    background:var(--rosa-principal);
    color:#fff;
}
.share-btn svg{
    width:19px;
    height:19px;
    fill:currentColor;
}

.product-body{
    padding:20px;
}
.product-body h4{
    color:#4c3a43;
    font-size:1.16rem;
    margin-bottom:8px;
}
.product-body p{
    color:var(--gris);
    font-size:.96rem;
    margin-bottom:16px;
}
.product-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.product-actions .btn{
    padding:12px 16px;
    font-size:.95rem;
}

/* cta */
.bottom-cta{
    padding:20px 0 70px;
}
.bottom-cta-box{
    background:linear-gradient(135deg, #fff0f6, #fff, #f5ffeef0);
    border:1px solid #f1dbe7;
    border-radius:32px;
    padding:38px 28px;
    text-align:center;
    box-shadow:var(--sombra);
}
.bottom-cta-box h3{
    font-size:2rem;
    margin-bottom:10px;
    color:#4b3a44;
}
.bottom-cta-box p{
    color:var(--gris);
    max-width:760px;
    margin:0 auto 22px;
}

/* footer */
footer{
    margin-top:10px;
    padding:28px 0 38px;
    text-align:center;
    color:#7a6c73;
    border-top:1px solid #f1dce7;
}

/* whatsapp float */
.whatsapp-float{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:9999;
    display:flex;
    align-items:center;
    gap:12px;
    background:linear-gradient(135deg, #25D366, #1ebe5d);
    color:#fff;
    padding:12px 16px;
    border-radius:999px;
    box-shadow:0 10px 25px rgba(37,211,102,.35);
    transition:transform .25s ease, box-shadow .25s ease;
    animation:whatsappPulse 2s infinite;
}
.whatsapp-float:hover{
    transform:translateY(-4px) scale(1.02);
    box-shadow:0 14px 30px rgba(37,211,102,.42);
    color:#fff;
}
.whatsapp-icon{
    width:46px;
    height:46px;
    min-width:46px;
    border-radius:50%;
    background:rgba(255,255,255,.16);
    display:flex;
    align-items:center;
    justify-content:center;
}
.whatsapp-icon svg{width:26px;height:26px}
.whatsapp-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}
.whatsapp-text strong{font-size:14px;font-weight:800}
.whatsapp-text small{font-size:12px;opacity:.95}
@keyframes whatsappPulse{
    0%{box-shadow:0 0 0 0 rgba(37,211,102,.35), 0 10px 25px rgba(37,211,102,.25);}
    70%{box-shadow:0 0 0 14px rgba(37,211,102,0), 0 10px 25px rgba(37,211,102,.25);}
    100%{box-shadow:0 0 0 0 rgba(37,211,102,0), 0 10px 25px rgba(37,211,102,.25);}
}

/* responsive */
@media (max-width: 980px){
    .menu-toggle{display:block}
    .menu{
        position:absolute;
        top:78px;
        right:0;
        background:white;
        width:100%;
        flex-direction:column;
        align-items:center;
        gap:18px;
        padding:25px;
        display:none;
        box-shadow:0 10px 20px rgba(0,0,0,0.08);
        border-radius:0 0 18px 18px;
    }
    .menu.active{display:flex}
    .gallery-grid{grid-template-columns:repeat(2,1fr)}
    .page-hero-box h2{font-size:2rem}
}
@media (max-width: 640px){
    .brand img{height:40px}
    .brand-text h1{font-size:1.15rem}
    .brand-text span{font-size:.76rem;letter-spacing:1.2px}
    .page-hero{padding:40px 0 24px}
    .page-hero-box{padding:32px 18px}
    .page-hero-box h2{font-size:1.6rem}
    .gallery-grid{grid-template-columns:1fr}
    .product-image{height:250px}
    .category-title{font-size:1.45rem}
    .bottom-cta-box h3{font-size:1.5rem}
    .whatsapp-float{
        right:12px;
        bottom:12px;
        padding:10px 12px;
        gap:10px;
    }
    .whatsapp-icon{
        width:42px;
        height:42px;
        min-width:42px;
    }
    .whatsapp-icon svg{
        width:24px;
        height:24px;
    }
    .whatsapp-text strong{font-size:13px}
    .whatsapp-text small{font-size:11px}
}
  @media (max-width: 640px){
            .services{
                grid-template-columns:1fr;
            }

            .hero{
                padding-top:40px;
            }

            .hero h2{
                font-size:1.9rem;
            }

            .brand-text h1{
                font-size:1.2rem;
            }

            .brand img{
                width:58px;
                height:58px;
            }

            .cta-box h3{
                font-size:1.5rem;
            }
        }
.formas-pago{
    padding:60px 0;
    background:linear-gradient(180deg,#fff,#fff7fb);
}

.pago-container{
    display:flex;
    justify-content:flex-start;
}

.pago-info{
    max-width:600px;
}

.pago-info h3{
    font-size:28px;
    color:#d94d92;
    margin-bottom:10px;
}

.pago-info p{
    color:#666;
    margin-bottom:20px;
}

.pago-logos{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    align-items:center;
}

.pago-logos img{
    height:40px;
    width:auto;
    transition:.3s;
    opacity:.9;
}

.pago-logos img:hover{
    transform:scale(1.1);
    opacity:1;
}		
/*.menu a.active {
    color: #ff8801;
    font-weight: bold;
    border-bottom: 2px solid #ff8801;
}*/
.footer{
    background:#1f1f1f;
    color:#ccc;
    padding:60px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:40px;
}

.footer-col h5{
    color:#fff;
    margin-bottom:15px;
}

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:10px;
    font-size:14px;
}

.footer-col i{
    margin-right:8px;
    color:var(--rosa-principal);
}

.footer-brand{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
}

.footer-brand img{
    width:50px;
    height:50px;
    object-fit:contain;
}

.footer-social a{
    display:inline-flex;
    width:40px;
    height:40px;
    align-items:center;
    justify-content:center;
    background:#333;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--rosa-principal);
}

.footer-map iframe{
    width:100%;
    height:180px;
    border-radius:10px;
}

.footer-bottom{
    text-align:center;
    margin-top:30px;
    border-top:1px solid #333;
    padding-top:15px;
    font-size:13px;
}
#btn-install{
    position: fixed;
    bottom: 80px;
    left: 20px;
    right: 20px;
    background: #d94d92;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 15px;
    font-size: 16px;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.topbar-info {
    background: #ff218e;
    color: #fff;
    font-size: 13px;
    padding: 6px 0;
}

.topbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left span {
    margin-right: 15px;
}


.topbar-right a {
    color: #fff;
    font-size: 16px;
    margin-left: 12px;
    transition: 0.3s;
}

.topbar-right a:hover {
    color: #d94d92; /* tu color principal */
    transform: scale(1.1);
}

.topbar-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.whatsapp-share-btn {
    position: fixed;
    bottom: 90px; /* encima del botón normal de WhatsApp */
    right: 20px;
    z-index: 999;

    display: flex;
    align-items: center;
    gap: 8px;

    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    text-decoration: none;

    padding: 12px 16px;
    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    box-shadow: 0 8px 20px rgba(0,0,0,0.2);

    transition: all 0.3s ease;
}

.whatsapp-share-btn i {
    font-size: 18px;
}

.whatsapp-share-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {

    .whatsapp-share-btn {
        padding: 10px 14px;
        border-radius: 40px;
        font-size: 13px;
    }

    .whatsapp-share-btn span {
        display: inline; /* 🔥 mostrar texto */
    }

    .whatsapp-share-btn i {
        font-size: 16px;
    }
}

.img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.img-wrapper img:first-child {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* 🔥 LOGO SUPERPUESTO 
.logo-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.7);
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
*/

.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 45px;
    height: 45px;
    object-fit: contain;

    background: rgba(255, 255, 255, 0.7);
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}


/*==================================================
=                 MENU GENERAL
==================================================*/

.menu-item{
    position:relative;
}

/* MegaMenu escritorio */
.mega-menu{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    background:#fff;
    display:none;
    z-index:9999;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    border-radius:12px;
    padding:20px;
}

/* Mostrar al hacer click */
.menu-item.open > .mega-menu{
    display:block;
}

/*==================================================
=               GRID DEL MEGAMENU
==================================================*/

.mega-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr) 280px;
    gap:25px;
    align-items:start;
}

/* Columnas */

.mega-column{
    display:flex;
    flex-direction:column;
}

.mega-column a{
    display:block;
    padding:18px 0;
    color:#333;
    text-decoration:none;
    transition:.25s;
}

.mega-column a:hover{
    color:#d94d92;
    padding-left:5px;
}

/* Banner */

.mega-banner{
    border-left:0px solid #eee;
    padding-left:10px;
}

.mega-banner img{
    width:100%;
    border-radius:10px;
    margin-bottom:12px;
}

.mega-banner h4{
    margin-bottom:10px;
}

.mega-banner p{
    color:#666;
    font-size:14px;
}

/*==================================================
=              FONDO OSCURO
==================================================*/

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    display:none;
    z-index:9998;
}

.menu-overlay.active{
    display:block;
}

/*==================================================
=              MENU RESPONSIVE
==================================================*/

@media (max-width:991px){

    .menu-toggle{
        display:block;
        background:none;
        border:0;
        font-size:30px;
        cursor:pointer;
        color:#333;
    }

    .menu{

        position:fixed;
        top:0;
        left:-100%;
        width:320px;
        max-width:90%;
        height:100vh;

        background:#fff;

        overflow-y:auto;

        transition:.35s;

        z-index:9999;

        padding:70px 20px 30px;

        box-shadow:-8px 0 25px rgba(0,0,0,.15);

    }

    .menu.active{

        left:0;

    }

    .menu-item{

        display:block;

        border-bottom:1px solid #eee;

    }

    .menu-item>a{

        display:flex;

        justify-content:space-between;

        align-items:center;

        padding:15px 5px;

        font-size:16px;

        font-weight:600;

        color:#333;

        text-decoration:none;

    }

    /* Submenu normal */

    .submenu{

        display:none;

        background:#fafafa;

        padding-left:15px;

    }

    .submenu a{

        display:block;

        padding:10px 0;

        font-size:15px;

    }

    /* MegaMenu */

    .mega-menu{

        position:static;

        transform:none;

        width:100%!important;

        display:none;

        background:#fafafa;

        box-shadow:none;

        border-radius:0;

        padding:15px;

    }

    .menu-item.open>.mega-menu,
    .menu-item.open>.submenu{

        display:block;

    }

    /* Grid móvil */

    .mega-grid{

        display:flex;

        flex-direction:column;

        gap:15px;

    }

    .mega-column{

        display:flex;

        flex-direction:column;

    }

    .mega-column a{

        padding:10px 0;

        border-bottom:1px solid #eee;

    }

    .mega-banner{

        border-left:0;

        border-top:1px solid #ddd;

        padding-top:15px;

        padding-left:0;

        text-align:center;

    }

    .mega-banner img{

        width:100%;

        border-radius:10px;

    }

}

/*==================================================
=            ESCRITORIO
==================================================*/

@media (min-width:992px){

    .menu-item.open>.mega-menu{

        display:block;

    }

}


/*==============================
LIGHTBOX
==============================*/

.hero-card img{

    cursor:pointer;
    transition:.35s;
}

.hero-card img:hover{

    transform:scale(1.02);
}

.lightbox{

    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:99999;

    padding:30px;
}

.lightbox.open{

    display:flex;
}

.lightbox img{

    max-width:95%;
    max-height:90vh;

    border-radius:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.4);

    animation:zoomLightbox .25s ease;
}

.lightbox-close{

    position:absolute;

    top:20px;
    right:30px;

    color:#fff;

    font-size:45px;

    cursor:pointer;

    user-select:none;
}

@keyframes zoomLightbox{

    from{

        transform:scale(.8);
        opacity:0;

    }

    to{

        transform:scale(1);
        opacity:1;

    }

}

@media(max-width:768px){

.lightbox img{

    max-width:100%;
    max-height:80vh;

}

.lightbox-close{

    top:10px;
    right:20px;
    font-size:38px;

}

}