*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

background-image:
url("../assets/img/fondo.jpg");

background-size:cover;

background-position:center;

background-attachment:fixed;

background-repeat:no-repeat;

color:#111827;

}

.hero{
padding:40px 20px;
}

.hero-container{
max-width:1200px;
margin:auto;
display:flex;
flex-wrap:wrap;
align-items:center;
gap:40px;
}

.hero-image{
flex:1;
}

.hero-image img{
width:100%;
border-radius:20px;
}

.hero-content{
flex:1;
}

.hero h1{
font-size:42px;
margin-bottom:20px;
}

.hero p{

margin-bottom:20px;

font-weight:700;

font-size:20px;

line-height:1.7;

color:#1f2937;

}
.precio-anterior{
text-decoration:line-through;
color:#999;
margin-right:10px;
}

.precio-actual{
font-size:34px;
font-weight:700;
color:#ff6b00;
}

.btn-comprar{
    width:100%;
    padding:18px;
    border:none;
    border-radius:50px; /* bordes redondos */
    background:linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );
    color:white;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 10px 25px rgba(37,99,235,.30);
}

.btn-comprar:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(37,99,235,.40);
}

.btn-comprar:active{
    transform:translateY(0);
}

section{
padding:60px 20px;
}

h2{
text-align:center;
margin-bottom:40px;
}

.beneficios-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
max-width:1000px;
margin:auto;
}

.beneficio{
background:white;
padding:20px;
border-radius:15px;
text-align:center;
}

.galeria-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
max-width:1200px;
margin:auto;
}

.galeria-img{
width:100%;
border-radius:15px;
}

.testimonios{
background:white;
}

.datos-pago{
max-width:500px;
margin:auto;
background:white;
padding:30px;
border-radius:15px;
}

.confirmacion form{
max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

.confirmacion input{
padding:15px;
border:1px solid #ddd;
border-radius:10px;
}

.confirmacion button{
background:#10b981;
color:white;
border:none;
padding:15px;
border-radius:10px;
cursor:pointer;
font-size:16px;
}

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25d366;
color:white;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
font-weight:600;
}

.testimonios-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

    max-width:1200px;

    margin:auto;

}

.testimonio-card{

background:white;

padding:30px;

border-radius:25px;

box-shadow:
0 10px 30px rgba(0,0,0,.08);

text-align:center;

animation:
respirar 4s ease infinite;

transition:.3s;

}

.testimonio-card img{

width:90px;

height:90px;

border-radius:50%;

object-fit:cover;

margin-bottom:15px;

border:4px solid #f3f4f6;

}

.testimonio-card h3{

margin-bottom:10px;

}

.estrellas{

font-size:22px;

margin-bottom:10px;

}

.testimonio-card p{

color:#555;

margin-bottom:10px;

}

.testimonio-card:hover{

transform:
translateY(-8px);

}
.navbar{

position:sticky;

top:0;

z-index:1000;

background:rgba(255,255,255,.95);

backdrop-filter:blur(10px);

display:flex;

justify-content:space-between;

align-items:center;

padding:15px 40px;

box-shadow:
0 4px 20px rgba(0,0,0,.06);

}

.logo{

display:flex;

align-items:center;

gap:10px;

font-weight:700;

}

.logo img{

height:45px;

}

.navbar ul{

display:flex;

gap:30px;

list-style:none;

}

.navbar a{

text-decoration:none;

color:#111827;

font-weight:600;

}
.rating{

margin-top:15px;

font-size:18px;

font-weight:600;

color:#f59e0b;

}
.comprando{

margin-top:20px;

font-size:18px;

font-weight:700;

background:white;

padding:15px 20px;

border-radius:18px;

display:inline-block;

box-shadow:
0 5px 20px rgba(0,0,0,.08);

color:#374151;

}
.beneficio{

display:flex;

align-items:center;

gap:15px;

background:white;

padding:25px;

border-radius:20px;

box-shadow:
0 5px 20px rgba(0,0,0,.05);

transition:.3s;

}

.beneficio svg{

color:#10b981;

}
@keyframes respirar{

0%{
transform:scale(1);
}

50%{
transform:scale(1.03);
}

100%{
transform:scale(1);
}

}

.stock{

font-size:24px;

font-weight:800;

color:#dc2626;

animation:
respirar 2s infinite;

}
.comprando{

font-size:15px;

background:#fff;

padding:10px 15px;

border-radius:12px;

display:inline-block;

box-shadow:
0 3px 10px rgba(0,0,0,.06);

}
/* ========================= */
/* RESPONSIVE TABLET */
/* ========================= */

@media (max-width: 992px){

.hero-container{

flex-direction:column;

text-align:center;

}

.hero-content{

align-items:center;

}

.navbar{

padding:15px 20px;

}

.navbar ul{

gap:15px;

}

.hero h1{

font-size:36px;

}

}

/* ========================= */
/* RESPONSIVE MOVIL */
/* ========================= */

@media (max-width: 768px){

.navbar{

flex-direction:column;

gap:15px;

padding:15px;

}

.navbar ul{

flex-wrap:wrap;

justify-content:center;

gap:10px;

}

.hero{

padding:40px 15px;

}

.hero h1{

font-size:30px;

}

.precio-actual{

font-size:28px;

}

.btn-comprar{

width:100%;

text-align:center;

}

.beneficios-grid{

grid-template-columns:1fr;

}

.galeria-grid{

grid-template-columns:1fr;

}

.testimonios-grid{

grid-template-columns:1fr;

}

.datos-pago{

padding:20px;

}

}

/* ========================= */
/* TELEFONOS PEQUEÑOS */
/* ========================= */

@media (max-width: 480px){

.hero h1{

font-size:26px;

}

.hero p{

font-size:15px;

}

.logo span{

font-size:16px;

}

.btn-comprar{

padding:15px;

font-size:16px;

}

.whatsapp-float{

right:15px;

bottom:15px;

padding:12px 18px;

}

@keyframes pulseBadge{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}

.oferta-badge{

display:inline-block;

padding:15px 30px;

margin-bottom:25px;

font-size:24px;

font-weight:900;

color:#dc2626;

background:
linear-gradient(
135deg,
#fef08a,
#facc15
);

border:4px solid #ef4444;

border-radius:20px;

box-shadow:
0 0 20px rgba(250,204,21,.8);

animation:
ofertaPulse 1.5s infinite;

text-transform:uppercase;

letter-spacing:2px;

}
@keyframes ofertaPulse{

0%{

transform:
scale(1);

}

50%{

transform:
scale(1.08);

box-shadow:
0 0 35px rgba(250,204,21,1);

}

100%{

transform:
scale(1);

}

}
.envio-info{

margin-top:25px;

font-size:24px;

line-height:2;

font-weight:800;

text-align:center;

background:white;

padding:20px;

border-radius:20px;

box-shadow:
0 5px 20px rgba(0,0,0,.08);

}

.logo img{

height:65px;

transition:.3s;

}

.logo span{

font-size:28px;

font-weight:800;

color:#0f172a;

}

.envio-item{

font-weight:800;

margin:10px 0;

}

.envio1{

color:#f59e0b;

}

.envio2{

color:#2563eb;

}

.envio3{

color:#10b981;

}
.hero::before{

content:"";

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

background:
rgba(255,255,255,.75);

}

.hero-container{

position:relative;

z-index:2;

}

.navbar a{

display:flex;

align-items:center;

gap:8px;

text-decoration:none;

color:#111827;

font-weight:700;

transition:.3s;

}

.navbar a:hover{

color:#2563eb;

}

.navbar a svg{

width:18px;

height:18px;

}
.footer{

background:#0f172a;

color:white;

padding:40px 20px;

text-align:center;

margin-top:80px;

}

.footer p{

font-size:15px;

margin-bottom:20px;

line-height:1.8;

}

.footer-links{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:20px;

}

.footer-links a{

color:#facc15;

text-decoration:none;

font-weight:700;

}

.footer-links a:hover{

text-decoration:underline;

}
.hero-image{

position:relative;

flex:1;

}
.slider-btn{

position:absolute;

top:50%;

transform:
translateY(-50%);

background:
rgba(0,0,0,.5);

color:white;

border:none;

width:45px;

height:45px;

border-radius:50%;

cursor:pointer;

font-size:25px;

z-index:10;

}
.prev{

left:15px;

}

.next{

right:15px;

}
.slider-btn:hover{

background:
#2563eb;

}
.como-usar{

background:white;

padding:60px 20px;

}

.pasos{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:20px;

max-width:1000px;

margin:auto;

}

.paso{

background:#f8fafc;

padding:25px;

border-radius:20px;

text-align:center;

font-size:18px;

font-weight:700;

box-shadow:
0 5px 15px rgba(0,0,0,.05);

}
.metodos-pago{
    display:flex;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:10px;
}

.metodo-btn{

background:#2563eb;

color:white;

border:none;

padding:15px 25px;

border-radius:15px;

cursor:pointer;

font-weight:700;

}

.metodo-btn:hover{

transform:scale(1.05);

}

.btn-pague{

background:#10b981;

color:white;

border:none;

padding:18px 30px;

border-radius:15px;

font-size:18px;

font-weight:700;

cursor:pointer;

margin-top:20px;

}

.datos-pago{

background:white;

padding:25px;

border-radius:20px;

max-width:500px;

margin:auto;

box-shadow:
0 5px 20px rgba(0,0,0,.08);

}
.modal{

display:none;

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:
rgba(0,0,0,.6);

justify-content:center;

align-items:center;

z-index:9999;

}

.modal-contenido{

background:white;

padding:30px;

border-radius:25px;

width:90%;

max-width:500px;

position:relative;

}

.cerrar{

position:absolute;

top:15px;

right:20px;

cursor:pointer;

font-size:25px;

font-weight:bold;

}

.metodos-pago{

display:flex;

gap:10px;

margin:20px 0;

flex-wrap:wrap;

}

.metodos-pago button{

background:#2563eb;

color:white;

border:none;

padding:12px 20px;

border-radius:12px;

cursor:pointer;

}
.modal-content{
    position:relative;
    background:#fff;
    width:90%;
    max-width:420px;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
    animation:modalShow .3s ease;
}

@keyframes modalShow{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.close-modal{
    position:absolute;
    top:15px;
    right:18px;
    font-size:28px;
    color:#333;
    cursor:pointer;
    font-weight:700;
    transition:.3s;
}

.close-modal:hover{
    color:#2563eb;
    transform:scale(1.1);
}

.payment-title{
    font-size:26px;
    font-weight:700;
    color:#111827;
    margin-bottom:10px;
}

.payment-subtitle{
    color:#6b7280;
    margin-bottom:25px;
    font-size:15px;
}
.payment-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
}

.payment-buttons button{
    border:none;
    background:linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );
    color:white;
    padding:14px 24px;
    border-radius:14px;
    cursor:pointer;
    font-weight:600;
    font-size:15px;
    transition:.3s;
}

.payment-buttons button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(37,99,235,.3);
}
.modal-contenido{
    position:relative;
    background:#fff;
    width:90%;
    max-width:420px;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.cerrar{
    position:absolute;
    top:15px;
    right:18px;
    font-size:28px;
    color:#222;
    cursor:pointer;
    font-weight:700;
    z-index:10;
}

.cerrar:hover{
    color:#2563eb;
    transform:scale(1.1);
}

.modal-icono{
    margin-bottom:15px;
}

.modal-icono svg{
    width:40px;
    height:40px;
    color:#2563eb;
}

.payment-title{
    margin:0;
    font-size:26px;
    font-weight:700;
    color:#111827;
}

.payment-subtitle{
    margin-top:10px;
    margin-bottom:25px;
    color:#6b7280;
    font-size:14px;
}

.metodos-pago{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.metodos-pago button{
    border:none;
    border-radius:30px;
    padding:10px 18px;
    background:linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );
    color:white;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    min-width:110px;
}

.metodos-pago button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(37,99,235,.3);
}
.info-pago{
    margin-top:25px;
    display:none;
    background:#f8fafc;
    border-radius:20px;
    padding:15px;
    text-align:left;
    color:#111827;
    border:2px solid #e5e7eb;
}

.info-pago img{
    width:90px;
    display:block;
    margin:0 auto 20px;
}

.info-pago h3{
    text-align:center;
    margin-bottom:15px;
    color:#1d4ed8;
    font-size:22px;
    font-weight:800;
}

.info-pago p{
    margin:15px 0;
    font-size:20px;
    line-height:1.6;
    color:#111827;
}

.info-pago strong{
    color:#000;
    font-size:22px;
}
.dato-pago{
background:#fff;
border-radius:14px;
padding:15px 18px;
margin-bottom:12px;
box-shadow:0 3px 12px rgba(0,0,0,.08);
border-left:5px solid #2563eb;
}

.dato-pago{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
    border-bottom:1px solid #e5e7eb;
    background:none;
    box-shadow:none;
    border-left:none;
    border-radius:0;
    margin-bottom:0;
}

.dato-pago .label{
    font-size:15px;
    color:#6b7280;
    font-weight:600;
}

.dato-pago .valor{
    font-size:16px;
    color:#111827;
    font-weight:700;
    text-align:right;
    max-width:55%;
    word-break:break-word;
    overflow-wrap:break-word;
}
.btn-copiar{
    width:100%;
    margin-top:15px;
    border:none;
    border-radius:12px;
    padding:12px;
    background:linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );
    color:white;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 8px 20px rgba(37,99,235,.25);
}

.btn-copiar:hover{
    transform:translateY(-2px);
}

.btn-copiar:active{
    transform:translateY(0);
}

.btn-ya-pague{
    width:100%;
    margin-top:10px;
    border:none;
    border-radius:12px;
    padding:12px;
    background:#22c55e;
    color:white;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    
}
.hero{
    position:relative;
    padding:40px 20px;
}
html,
body{
    overflow-x:hidden;
}
body{
    min-height:auto !important;
}
}
