1 cuota de $444.444,00 sin interés | CFT: 0,00% | TEA: 0,00% | Total $444.444,00 |
3 cuotas de $148.148,00 sin interés | CFT: 0,00% | TEA: 0,00% | Total $444.444,00 |
2 cuotas de $222.222,00 sin interés | CFT: 0,00% | TEA: 0,00% | Total $444.444,00 |
6 cuotas de $100.799,90 | Total $604.799,40 | |
9 cuotas de $75.466,59 | Total $679.199,32 | |
12 cuotas de $63.433,27 | Total $761.199,24 | |
24 cuotas de $47.335,14 | Total $1.136.043,31 |
6 cuotas de $104.296,19 | Total $625.777,15 |
6 cuotas de $105.044,34 | Total $630.266,04 | |
9 cuotas de $78.602,39 | Total $707.421,51 | |
12 cuotas de $64.374,01 | Total $772.488,12 |
18 cuotas de $52.207,36 | Total $939.732,39 |
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Espejo LED con Neceser y Regalos | Brandy</title>
<style>
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-color: #fff8f0;
color: #4b2e0a;
}
.container {
max-width: 1000px;
margin: auto;
padding: 20px;
}
.hero {
display: flex;
flex-wrap: wrap;
gap: 30px;
align-items: center;
margin-top: 40px;
}
.hero img {
flex: 1 1 300px;
max-width: 100%;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.hero-text {
flex: 1 1 300px;
}
h1 {
font-size: 2rem;
margin-bottom: 12px;
}
.price {
font-size: 1.6rem;
font-weight: bold;
margin: 10px 0;
color: #d47500;
}
.installments {
font-size: 1rem;
background: #ffe7b2;
padding: 4px 10px;
border-radius: 6px;
display: inline-block;
margin-bottom: 20px;
color: #4b2e0a;
}
.btn {
background: #4b2e0a;
color: white;
border: none;
padding: 14px 30px;
font-size: 1.1rem;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
}
.btn:hover {
background: #5e3a12;
transform: translateY(-2px);
}
.urgency {
color: #a14400;
margin-top: 10px;
font-weight: 600;
}
.features {
margin: 40px 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
}
.feature {
background: #fff0e1;
padding: 20px;
border-radius: 10px;
}
.feature h3 {
margin: 0 0 8px;
font-size: 1.1rem;
}
.testimonial {
background: #fbe8d4;
padding: 30px;
border-radius: 12px;
font-style: italic;
}
.footer-cta {
text-align: center;
margin-top: 50px;
padding-top: 20px;
border-top: 1px solid #e4cdb6;
}
.footer-cta p {
margin-top: 10px;
font-size: 0.95rem;
color: #5c3a1b;
}
@media (max-width: 768px) {
.hero { flex-direction: column; }
.btn { width: 100%; }
}
</style>
</head>
<body>
<div class="container">
<section class="hero">
<img src="https://dcdn.mitiendanube.com/stores/001/906/276/products/espejo1-18efdc93fa300174a716717446120541-1024-1024.webp" alt="Espejo LED con luz y neceser" />
<div class="hero-text">
<h1>Espejo LED + Neceser + 3 Frascos de Regalo</h1>
<p>Transformá tu rutina con este set completo y estético. Iluminación LED, portabilidad y estilo en un solo producto.</p>
<div class="price">$XX.XXX</div>
<div class="installments">3 cuotas sin interés de $YY.YYY</div>
<button class="btn">Comprar ahora</button>
<p class="urgency">¡Solo por hoy! Quedan pocas unidades.</p>
</div>
</section>
<section class="features">
<div class="feature">
<h3>💡 Luz LED Ajustable</h3>
<p>Elegí el brillo ideal para cada momento del día.</p>
</div>
<div class="feature">
<h3>🎁 Incluye Regalos</h3>
<p>Viene con neceser y 3 frascos para tus cosméticos o aceites.</p>
</div>
<div class="feature">
<h3>👜 Súper Portable</h3>
<p>Diseño compacto, ideal para viajes o para el baño.</p>
</div>
<div class="feature">
<h3>🔒 Compra Segura</h3>
<p>Atención personalizada + garantía de satisfacción.</p>
</div>
</section>
<section class="testimonial">
“¡Lo amo! El espejo es hermoso y muy funcional. Llegó rapidísimo y la presentación del paquete fue un 10. – Luciana R.”
</section>
<div class="footer-cta">
<button class="btn">Comprar ahora</button>
<p>Envío rápido a todo el país. Pago seguro.</p>
</div>
</div>
</body>
</html>