# css/style.css

```css
/* ===================================== */
/* RESET */
/* ===================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial, Helvetica, sans-serif;
background:#fffaf7;
color:#2d2d2d;
}

/* ===================================== */
/* VARIABLES */
/* ===================================== */

:root{

--rosa:#f6a7b3;
--rosa-hover:#ec8d9c;

--verde:#25D366;
--verde-hover:#1fa955;

--crema:#fffaf7;

--marron:#5b3c2d;

--gris:#777;

--shadow:0 10px 25px rgba(0,0,0,.08);

}

/* ===================================== */
/* CONTAINER */
/* ===================================== */

.container{
width:90%;
max-width:1400px;
margin:auto;
}

/* ===================================== */
/* HEADER */
/* ===================================== */

.header{

position:sticky;
top:0;
z-index:999;

background:white;

box-shadow:0 2px 10px rgba(0,0,0,.05);

}

.header-container{

display:flex;
align-items:center;
justify-content:space-between;

padding:8px 0;

}

.logo img{
height:105px;
}

.nav{

display:flex;
gap:30px;
align-items:center;

}

.nav a{

text-decoration:none;
font-weight:600;
color:#333;

transition:.3s;

}

.nav a:hover{
color:var(--rosa);
}

.about-btn{

background:none;
border:none;

font-size:16px;
font-weight:600;

cursor:pointer;

color:#333;

}

.about-btn:hover{
color:var(--rosa);
}

.whatsapp-header{

background:var(--verde);

padding:14px 22px;

border-radius:40px;

color:white;
text-decoration:none;

font-weight:700;

display:flex;
align-items:center;
gap:10px;

transition:.3s;

}

.whatsapp-header:hover{
background:var(--verde-hover);
}

/* ===================================== */
/* HERO */
/* ===================================== */

.hero{

position:relative;
height:85vh;

overflow:hidden;

}

.hero-image{

width:100%;
height:100%;

object-fit:cover;

}

.hero-overlay{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.20);

display:flex;
align-items:center;

}

.hero-content{

margin-left:10%;

max-width:550px;

color:white;

}

.hero-content h1{

font-size:68px;

line-height:1.1;

margin-bottom:20px;

}

.hero-content p{

font-size:22px;

line-height:1.6;

margin-bottom:30px;

}

.catalog-btn{

display:inline-block;

padding:18px 35px;

background:var(--rosa);

border-radius:50px;

text-decoration:none;

color:white;

font-weight:700;

transition:.3s;

}

.catalog-btn:hover{
background:var(--rosa-hover);
}

/* ===================================== */
/* ESTADÍSTICAS */
/* ===================================== */

.stats{

background:white;

padding:50px 0;

}

.stats-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;

}
.stat-card{

    background:white;

    padding:45px 35px;

    text-align:center;

    border-radius:28px;

    border:1px solid rgba(244,199,208,.35);

    box-shadow:
        0 10px 30px rgba(0,0,0,.05),
        0 1px 2px rgba(0,0,0,.04);

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.stat-card i{

font-size:35px;

color:var(--rosa);

margin-bottom:15px;

}

.stat-card h3{

font-size:32px;

margin-bottom:10px;

color:var(--marron);

}

.stat-card p{

color:var(--gris);

}

/* ===================================== */
/* PRODUCTOS */
/* ===================================== */

.products-section{

padding:90px 0;

}

.section-title{

text-align:center;

font-size:42px;

color:var(--marron);

margin-bottom:60px;

}

.products-grid{

display:grid;

grid-template-columns:
repeat(4,1fr);

gap:30px;

}

.product-card{

background:white;

border-radius:20px;

overflow:hidden;

box-shadow:var(--shadow);

transition:.3s;

}

.product-card:hover{

transform:translateY(-8px);

}

.product-card img{

width:100%;
height:260px;

object-fit:cover;

}

.product-card h3{

padding-top:20px;

text-align:center;

font-size:20px;

}

.product-card span{

display:block;

text-align:center;

margin:15px 0;

font-size:24px;

font-weight:700;

color:#e95b74;

}

.details-btn{

width:85%;

margin:0 auto 10px;

display:block;

padding:12px;

background:#f1f1f1;

border:none;

border-radius:10px;

cursor:pointer;

font-weight:600;

}

.buy-btn{

display:block;

width:85%;

margin:0 auto 25px;

padding:14px;

background:var(--verde);

color:white;

text-align:center;

text-decoration:none;

border-radius:10px;

font-weight:700;

}

/* ===================================== */
/* TESTIMONIOS */
/* ===================================== */

.testimonials{

padding:100px 0;

background:white;

}

.testimonials h2{

text-align:center;

margin-bottom:50px;

font-size:42px;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.testimonial img{

width:100%;

border-radius:20px;

box-shadow:var(--shadow);

}

/* ===================================== */
/* CTA FINAL */
/* ===================================== */

.cta-final{

height:550px;

background:
url('../assets/banner-final.jpeg');

background-size:cover;
background-position:center;

position:relative;

}

.cta-overlay{

position:absolute;

width:100%;
height:100%;

background:rgba(0,0,0,.35);

display:flex;
align-items:center;

}

.cta-content{

padding-left:10%;

color:white;

max-width:600px;

}

.cta-content h2{

font-size:56px;

margin-bottom:20px;

}

.cta-content p{

font-size:22px;

margin-bottom:25px;

}

.cta-btn{

background:var(--verde);

padding:18px 35px;

border-radius:40px;

text-decoration:none;

color:white;

font-weight:700;

display:inline-block;

}

/* ===================================== */
/* FOOTER */
/* ===================================== */

.footer{
    background:#2d1e1a;
    color:white;
    padding:40px 0;
}

.footer-grid{

display:grid;

grid-template-columns:
2fr 1fr 1fr 1fr;

gap:25px;

}

.footer-logo{

height:60px;

margin-bottom:10px;

}

.footer h4{

margin-bottom:20px;

}

.footer ul li a{
    color:#f6a7b3;
    text-decoration:none;
    transition:.3s ease;

    display:flex;
    align-items:center;
    gap:10px;
}
.footer ul li a i{
    width:20px;
    text-align:center;
    font-size:16px;
    color:#f6a7b3;
}

.footer ul li a:hover{
    color:#ffffff;
    transform:translateX(5px);
}

.footer ul li a:hover i{
    color:#ffffff;
}

/* ===================================== */
/* MODALES */
/* ===================================== */

.modal{
display:none;
position:fixed;
z-index:9999;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.75);

justify-content:center;
align-items:center;
padding:20px;
}

.modal-content{
    background:#fff;
    width:90%;
    max-width:1000px;
    border-radius:20px;
    overflow:hidden;
    position:relative;
}

.modal-body{
    display:flex;
    align-items:stretch;
    min-height:550px;
}

.modal-body img{
    width:50%;
    height:auto;
    object-fit:cover;
}

.modal-info{
    width:50%;
    padding:60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.modal-info h3{
    font-size:42px;
    margin-bottom:15px;
    color:#2d2d2d;
}

.modal-price{
    font-size:44px;
    color:#d85a7f;
    font-weight:800;
    margin-bottom:30px;
}

.modal-description{
    line-height:2.3;
    font-size:18px;
    color:#555;
    margin-bottom:35px;
}

.modal-whatsapp{
    display:inline-block;
    text-align:center;
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:16px;
    border-radius:12px;
    font-weight:700;
}
/* ===================================== */
/* WHATSAPP FLOTANTE */
/* ===================================== */

.floating-whatsapp{

position:fixed;

bottom:25px;
right:25px;

width:70px;
height:70px;

background:var(--verde);

border-radius:50%;

display:flex;

align-items:center;
justify-content:center;

color:white;

font-size:34px;

text-decoration:none;

z-index:999;

box-shadow:0 10px 25px rgba(0,0,0,.25);

}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:1100px){

.products-grid{
grid-template-columns:repeat(2,1fr);
}

.stats-grid{
grid-template-columns:repeat(2,1fr);
}

.testimonial-grid{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.hero-content h1{
font-size:42px;
}

.hero-content p{
font-size:18px;
}

.products-grid{
grid-template-columns:1fr;
}

.stats-grid{
grid-template-columns:1fr;
}

.header-container{

flex-direction:column;
gap:20px;

}

.nav{

flex-wrap:wrap;
justify-content:center;

}

}
.about-modal-content{
    background:#fff7f8;
    width:85%;
    max-width:700px;
    border-radius:22px;
    padding:40px;
    text-align:left;

    border:2px solid #f4c7d0;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}
.about-modal-content h2::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    background:#e7a2b2;
    margin-top:12px;
    border-radius:20px;
}
.about-modal-content h2{
    font-size:38px;
    color:#c85b7c;
    margin-bottom:25px;
    font-weight:800;
}

.about-modal-content p{
    font-size:17px;
    line-height:2;
    color:#555;
}
.highlight-message{
    margin-top:25px;

    font-size:16px;

    font-weight:700;

    color:#d94f7a;

    display:flex;
    align-items:center;
    gap:10px;

    line-height:1.5;
}