*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI,Arial,sans-serif;
}

body{
    background:#f4f6fb;
}

header{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#081A3A;
    color:white;
    z-index:999;
}

.logo h1{
    color:#ff2d75;
    font-size:34px;
}

.logo p{
    font-size:13px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:25px;
    transition:.3s;
    font-weight:600;
}

nav a:hover{
    color:#ff2d75;
}

.hero{
    height:100vh;
    background:linear-gradient(rgba(8,26,58,.75),rgba(8,26,58,.75)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600&auto=format&fit=crop");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    color:white;
    text-align:center;
}

.hero h2{
    font-size:65px;
}

.hero p{
    margin-top:20px;
    font-size:22px;
    max-width:700px;
}

button{
    margin-top:35px;
    padding:18px 45px;
    border:none;
    border-radius:40px;
    background:#ff2d75;
    color:white;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    transform:scale(1.05);
    background:#ff4b8d;
}

.servicios{
    padding:90px 8%;
}

.servicios h2{
    text-align:center;
    color:#081A3A;
    margin-bottom:50px;
    font-size:40px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    text-align:center;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    color:#081A3A;
    margin-bottom:15px;
}
.logo img{
    height:65px;
}

@media(max-width:900px){

header{

flex-direction:column;

padding:15px;

}

nav{

margin-top:15px;

}

nav a{

display:inline-block;

margin:8px;

}

.hero h2{

font-size:42px;

}

.hero p{

font-size:18px;

padding:0 20px;

}

}
.hero-content{
    max-width:900px;
}

.badge{
    display:inline-block;
    background:#ffffff20;
    border:1px solid #ffffff50;
    padding:10px 18px;
    border-radius:30px;
    margin-bottom:25px;
    backdrop-filter:blur(8px);
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn1,.btn2{

padding:18px 35px;

border-radius:50px;

text-decoration:none;

font-weight:bold;

transition:.3s;

}

.btn1{

background:#ff2d75;

color:white;

}

.btn2{

background:white;

color:#081A3A;

}

.btn1:hover{

transform:translateY(-5px);

}

.btn2:hover{

transform:translateY(-5px);

}

@media(max-width:700px){

.hero h2{

font-size:42px;

}

.hero-buttons{

flex-direction:column;

}

}
.productos{

padding:90px 8%;

background:#f5f5f5;

}

.productos h2{

text-align:center;

margin-bottom:50px;

font-size:42px;

color:#081A3A;

}

.productos-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.producto-card{

background:white;

border-radius:20px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.1);

transition:.3s;

}

.producto-card:hover{

transform:translateY(-8px);

}

.producto-card img{

width:100%;

height:240px;

object-fit:cover;

}

.producto-card h3{

padding:20px;

margin:0;

}

.precio{

padding:0 20px;

font-size:24px;

font-weight:bold;

color:#ff2d75;

}

.producto-card span{

display:block;

padding:15px 20px;

color:#666;

}

.producto-card button{

margin:20px;

width:calc(100% - 40px);

}
.producto-detalle{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

padding:80px 8%;

align-items:center;

}

.producto-detalle img{

width:100%;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.15);

}

/* =========================================
   GALERÍA DE IMÁGENES DEL PRODUCTO
========================================= */

.galeria-producto{
    width:100%;
}

.galeria-producto .imagen-principal{
    display:block;
    width:100%;
    height:520px;
    object-fit:contain;
    background:#ffffff;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    cursor:zoom-in;
}

.miniaturas-producto{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:18px;
    justify-content:flex-start;
}

.miniatura-producto{
    width:78px !important;
    height:78px !important;
    object-fit:cover !important;
    border-radius:12px !important;
    border:3px solid transparent;
    box-shadow:0 5px 15px rgba(0,0,0,.10) !important;
    cursor:pointer;
    opacity:.72;
    transition:.25s ease;
    background:#fff;
}

.miniatura-producto:hover{
    opacity:1;
    transform:translateY(-3px);
}

.miniatura-producto.activa{
    opacity:1;
    border-color:#ff2d75;
    box-shadow:0 5px 18px rgba(255,45,117,.30) !important;
    transform:translateY(-2px);
}

.info h1{

font-size:42px;

margin-bottom:20px;

color:#081A3A;

}

.info h2{

color:#ff2d75;

font-size:36px;

margin-bottom:20px;

}

.info p{

font-size:18px;

line-height:1.7;

margin-bottom:25px;

}

.info span{

background:#081A3A;

color:white;

padding:10px 18px;

border-radius:30px;

}

@media(max-width:900px){

.producto-detalle{

grid-template-columns:1fr;

}

}
@media(max-width:900px){

    .galeria-producto .imagen-principal{
        height:420px;
    }

    .miniaturas-producto{
        justify-content:center;
    }

}

.total{

margin-top:50px;

text-align:right;

}

.total h2{

font-size:40px;

color:#ff2d75;

margin-bottom:25px;

}

.item-carrito{

display:flex;

justify-content:space-between;

align-items:center;

background:white;

padding:20px;

margin-bottom:20px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.item-carrito img{

width:90px;

height:90px;

object-fit:cover;

border-radius:10px;

}

.item-info{

flex:1;

margin-left:20px;

}

.item-info h3{

margin:0;

}

.item-info p{

margin-top:8px;

color:#666;

}
.footer{

background:#081A3A;

color:white;

padding:60px 8% 20px;

margin-top:80px;

}

.footer-contenido{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:40px;

}

.footer h3{

margin-bottom:20px;

}

.footer a{

color:white;

text-decoration:none;

line-height:2;

}

.footer a:hover{

color:#ff2d75;

}

.copyright{

margin-top:40px;

padding-top:20px;

border-top:1px solid rgba(255,255,255,.2);

text-align:center;

font-size:14px;

}
/* HERO NUEVO */

.hero{

position:relative;

height:90vh;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

overflow:hidden;

background:linear-gradient(135deg,#081A3A,#153C73,#1B5CB8);

color:white;

}

.hero::before{

content:"";

position:absolute;

width:700px;

height:700px;

background:rgba(255,255,255,.05);

border-radius:50%;

top:-250px;

right:-200px;

filter:blur(10px);

}

.hero::after{

content:"";

position:absolute;

width:500px;

height:500px;

background:#ff2d7525;

border-radius:50%;

bottom:-200px;

left:-150px;

}

.hero-overlay{

position:absolute;

inset:0;

background:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.35));

}

.hero-content{

position:relative;

z-index:5;

max-width:900px;

padding:20px;

}

.hero h1{

font-size:70px;

margin:0;

letter-spacing:4px;

}

.hero h2{

font-size:38px;

margin-top:20px;

}

.hero p{

margin-top:25px;

font-size:22px;

line-height:1.8;

}

.badge{

display:inline-block;

padding:12px 24px;

border-radius:50px;

background:rgba(255,255,255,.15);

backdrop-filter:blur(12px);

margin-bottom:30px;

}
.beneficios{
    padding:90px 8%;
    background:#ffffff;
}

.beneficios h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
    color:#081A3A;
}

.beneficios-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.beneficio{
    background:#f8f9fb;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.beneficio:hover{
    transform:translateY(-8px);
}

.icono{
    font-size:50px;
    margin-bottom:20px;
}

.beneficio h3{
    color:#081A3A;
    margin-bottom:15px;
}

.beneficio p{
    color:#555;
    line-height:1.6;
}
.testimonios{

    padding:90px 8%;
    background:#081A3A;
    color:white;

}

.testimonios h2{

    text-align:center;
    margin-bottom:50px;
    font-size:42px;

}

.testimonios-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;

}

.testimonio{

    background:rgba(255,255,255,.08);
    border-radius:20px;
    padding:30px;
    backdrop-filter:blur(10px);

}

.testimonio p{

    line-height:1.8;
    margin-bottom:20px;

}

.testimonio h4{

    color:#FFD700;

}

.testimonio span{

    color:#ddd;

}
/* =========================================
   ESPECIAL DÍA DE LA MADRE
========================================= */

.dia-madre {
    margin: 50px auto;
    max-width: 1200px;
    padding: 70px 30px;
    border-radius: 25px;
    background: linear-gradient(135deg, #fff1f6, #ffe3ed, #fff7fa);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dia-madre::before {
    content: "🌸";
    position: absolute;
    font-size: 90px;
    left: 25px;
    top: 15px;
    opacity: 0.15;
}

.dia-madre::after {
    content: "💗";
    position: absolute;
    font-size: 100px;
    right: 25px;
    bottom: 5px;
    opacity: 0.15;
}

.dia-madre-contenido {
    position: relative;
    z-index: 2;
}

.dia-madre-badge {
    display: inline-block;
    background: #ffffff;
    color: #d63384;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.dia-madre h2 {
    margin: 5px 0;
    font-size: 42px;
    color: #173b70;
}

.dia-madre h3 {
    margin: 10px 0;
    font-size: 24px;
    color: #d63384;
}

.dia-madre p {
    max-width: 650px;
    margin: 15px auto 25px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.dia-madre-botones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-madre,
.btn-madre-whatsapp {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn-madre {
    background: #d63384;
    color: white;
}

.btn-madre:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(214, 51, 132, 0.3);
}

.btn-madre-whatsapp {
    background: #ffffff;
    color: #173b70;
    border: 2px solid #173b70;
}

.btn-madre-whatsapp:hover {
    transform: translateY(-3px);
    background: #173b70;
    color: white;
}


/* =========================================
   CELULARES
========================================= */

@media (max-width: 600px) {

    .dia-madre {
        margin: 30px 15px;
        padding: 45px 20px;
        border-radius: 18px;
    }

    .dia-madre h2 {
        font-size: 30px;
    }

    .dia-madre h3 {
        font-size: 20px;
    }

    .dia-madre p {
        font-size: 16px;
    }

    .dia-madre-botones {
        flex-direction: column;
    }

    .btn-madre,
    .btn-madre-whatsapp {
        width: 100%;
        box-sizing: border-box;
    }

}

/* =========================================
   GALERÍA EN CELULARES
========================================= */

@media (max-width:600px){

    .galeria-producto .imagen-principal{
        height:320px;
        border-radius:16px;
    }

    .miniatura-producto{
        width:64px !important;
        height:64px !important;
        border-radius:10px !important;
    }

}
/* =====================================================
   MEJORADOR DE IMÁGENES CON IA
===================================================== */

.ai-enhancer-section {
    padding: 70px 20px;
}

.ai-enhancer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 45px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 35px;
    background: linear-gradient(
        135deg,
        #111827,
        #312e81
    );
    color: white;
}

.ai-enhancer-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: rgba(255,255,255,0.12);
}

.ai-enhancer-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.ai-enhancer-text h2 {
    margin: 8px 0 12px;
    font-size: 32px;
}

.ai-enhancer-text p {
    margin: 0 0 25px;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.btn-ai-enhancer {
    display: inline-flex;
    align-items: center;
    padding: 13px 22px;
    border-radius: 12px;
    background: white;
    color: #312e81;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-ai-enhancer:hover {
    transform: translateY(-2px);
}

@media (max-width: 700px) {

    .ai-enhancer-content {
        padding: 30px 22px;
        flex-direction: column;
        text-align: center;
    }

    .ai-enhancer-text h2 {
        font-size: 25px;
    }

}
/* ================================
   PAGO SINPE MÓVIL
================================ */

.sinpe-box {
    margin-bottom: 25px;
    padding: 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, #081A3A, #12366f);
    color: white;
    box-shadow: 0 10px 25px rgba(8, 26, 58, 0.18);
    text-align: center;
}

.sinpe-titulo {
    margin: 0 0 8px;
    font-size: 21px;
}

.sinpe-texto {
    margin: 0 auto 15px;
    max-width: 600px;
    color: #e5edf9;
    line-height: 1.5;
}

.sinpe-numero {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 12px;
    background: #ff2d75;
    color: white;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 6px 18px rgba(255, 45, 117, 0.3);
}

.sinpe-instruccion {
    margin: 15px 0 0;
    color: #e5edf9;
    font-size: 14px;
}

.sinpe-box button {
    margin-top: 15px;
    background: white;
    color: #081A3A;
    padding: 10px 16px;
    border-radius: 9px;
    font-size: 14px;
}

.sinpe-box button:hover {
    transform: translateY(-1px);
    filter: none;
}

@media (max-width: 700px) {

    .sinpe-box {
        padding: 18px;
    }

    .sinpe-numero {
        font-size: 23px;
    }
}