*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#fff8fb;
  color:#333;
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

header{
  background:linear-gradient(135deg,#ffd7e8,#fff);
  padding:60px 0;
  justify-content: center;

}

.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

.hero-text{
  flex:1;
  min-width:300px;
}

.hero-text h1{
  font-size:3rem;
  color:#d45d8f;
  margin-bottom:20px;
  line-height:1.1;
}

.hero-text p{
  font-size:1.1rem;
  margin-bottom:25px;
  color:#555;
}

.price{
  font-size:2rem;
  font-weight:700;
  color:#111;
  margin-bottom:20px;
}

.free-shipping{
  display:inline-block;
  background:#d45d8f;
  color:white;
  padding:10px 18px;
  border-radius:30px;
  font-size:0.9rem;
  margin-bottom:25px;
}

.btn{
  display:inline-block;
  background:#25d366;
  color:white;
  text-decoration:none;
  padding:16px 28px;
  border-radius:50px;
  font-weight:600;
  transition:0.3s ease;
  align-items: center;
}

.btn:hover{
  transform:translateY(-2px);
  opacity:0.9;
}

.hero-image{
  flex:1;
  min-width:280px;
}

.hero-image img{
  border-radius:25px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.features{
  padding:80px 0;
  background:white;
}

.section-title{
  text-align:center;
  font-size:2.2rem;
  margin-bottom:50px;
  color:#d45d8f;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.feature-card{
  background:#fff8fb;
  padding:30px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.feature-card h3{
  margin:15px 0;
  color:#d45d8f;
}

.gallery{
  padding:80px 0;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

.gallery-grid img{
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.reviews{
  background:white;
  padding:80px 0;
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.review-card{
  background:#fff8fb;
  padding:25px;
  border-radius:20px;
  box-shadow:0 10px 20px rgba(0,0,0,0.05);
}

.review-card h4{
  margin-bottom:10px;
  color:#d45d8f;
}

.cta{
  padding:80px 0;
  text-align:center;
  background:linear-gradient(135deg,#ffd7e8,#fff);
}

.cta h2{
  font-size:2.5rem;
  margin-bottom:20px;
  color:#d45d8f;
}

.cta p{
  margin-bottom:30px;
  font-size:1.1rem;
}

.faq{
  padding:80px 0;
  background:white;
}

.faq-item{
  margin-bottom:20px;
  padding:20px;
  border-radius:15px;
  background:#fff8fb;
}

.faq-item h3{
  color:#d45d8f;
  margin-bottom:10px;
}

footer{
  background:#111;
  color:white;
  text-align:center;
  padding:30px 20px;
}

.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25d366;
  color:white;
  width:65px;
  height:65px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
  z-index:999;
}

@media(max-width:768px){

  .hero-text h1{
    font-size:2.2rem;
  }

  .hero{
    text-align:center;
  }

  .btn{
    width:100%;
    text-align:center;
  }

}



/* BOTON URGENCIA
 */

 .cta-button{
display:inline-block;
background:linear-gradient(90deg,#00c853,#00e676);
padding:18px 38px;
color:white;
font-size:24px;
font-weight:800;
border-radius:16px;
text-decoration:none;
box-shadow:0 0 25px rgba(0,255,100,.5);
transition:.3s;
animation:shake 1.5s infinite;
}

.cta-button:hover{
transform:scale(1.05);
}

@keyframes shake{
0%{transform:translateX(0);}
25%{transform:translateX(2px);}
50%{transform:translateX(-2px);}
75%{transform:translateX(2px);}
100%{transform:translateX(0);}
}

@media(max-width:768px){

  .hero{
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
  }

}

/* CHECKOUT     BOTON ADICIONAL PARA COMPRA  */

.checkout-modal{
display:none;
position:fixed;
z-index:99999;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.75);
backdrop-filter:blur(6px);
overflow:auto;
}

.checkout-container{
background:white;
width:95%;
max-width:500px;
margin:30px auto;
padding:25px;
border-radius:24px;
font-family:'Poppins',sans-serif;
animation:popup .3s ease;
box-shadow:0 20px 60px rgba(0,0,0,.3);
}

.close-checkout{
font-size:38px;
cursor:pointer;
float:right;
}

.checkout-container h2{
margin-bottom:20px;
font-size:28px;
color:#222;
}

.product-summary{
display:flex;
align-items:center;
gap:15px;
margin-bottom:20px;
}

.product-summary img{
width:80px;
border-radius:14px;
}

.checkout-container label{
font-weight:600;
margin-top:12px;
display:block;
margin-bottom:6px;
}

.checkout-container select,
.checkout-container input,
.checkout-container textarea{
width:100%;
padding:15px;
border-radius:14px;
border:1px solid #ddd;
margin-bottom:14px;
font-size:15px;
font-family:'Poppins',sans-serif;
}

.checkout-container textarea{
height:90px;
resize:none;
}

.checkbox{
display:flex;
align-items:center;
gap:10px;
font-size:14px;
margin-top:10px;
}

.total-box{
background:#fff4f8;
padding:18px;
border-radius:16px;
font-size:24px;
font-weight:700;
text-align:center;
margin-top:20px;
color:#ff0066;
}

.finish-btn{
width:100%;
background:linear-gradient(135deg,#ff4d8d,#ff0066);
color:white;
padding:18px;
border:none;
border-radius:16px;
font-size:18px;
font-weight:700;
cursor:pointer;
margin-top:20px;
transition:.3s;
}

.finish-btn:hover{
transform:scale(1.02);
}

@media(max-width:768px){

.checkout-container{
width:92%;
padding:20px;
}

.checkout-container h2{
font-size:24px;
}

.total-box{
font-size:20px;
}

}


.price-box{
margin:25px 0;
display:flex;
flex-direction:column;
align-items:flex-start;
gap:10px;
}

.price-label{
background:linear-gradient(135deg,#ff0066,#ff4d8d);
color:white;
padding:8px 18px;
border-radius:30px;
font-size:14px;
font-weight:700;
box-shadow:0 8px 20px rgba(255,0,102,.35);
animation:pulse 2s infinite;
}

.price{
font-size:3rem;
font-weight:900;
line-height:1;
background:linear-gradient(135deg,#111,#ff0066);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
text-shadow:0 8px 25px rgba(0,0,0,.12);
letter-spacing:-1px;
}

@keyframes pulse{
0%{
transform:scale(1);
}

50%{
transform:scale(1.05);
}

100%{
transform:scale(1);
}
}

/* MOBILE */

@media(max-width:768px){

.price{
font-size:2.4rem;
}

.price-box{
align-items:center;
}

}


.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
width:70px;
height:70px;
background:#25d366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 25px rgba(0,0,0,.25);
z-index:9999;
animation:floatWhatsapp 2s infinite;
transition:.3s ease;
}

.whatsapp-float img{
width:38px;
height:38px;
object-fit:contain;
}

.whatsapp-float:hover{
transform:scale(1.08);
}

@keyframes floatWhatsapp{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-5px);
}

100%{
transform:translateY(0);
}

}


