/* ================================
RENACER MUJER – CSS LIMPIO REAL
================================ */

/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

/* VARIABLES */
:root{
--rm-text:#4a3f35;
--rm-accent:#8a6f5a;

--rm-pad:#ffffff;
--rm-pad-soft:#f4efe9;

--rm-btn:#4a3f35;
--rm-btn-text:#ffffff;
}

/* BODY */
body{
font-family:'Montserrat',sans-serif;
color:var(--rm-text);
font-weight:600;
background-image:url("/img/cerezo.avif");
background-size:cover;
background-position:center;
background-attachment:fixed;
}

/* BLOQUES BASE */
.lb-hero{
max-width:1200px;
margin:120px auto 80px auto;
padding:120px 80px;
border-radius:12px;
background:var(--rm-pad);
}

.lb-section{
max-width:1200px;
margin:60px auto;
padding:60px;
border-radius:12px;
background:var(--rm-pad-soft);
}

.lb-section-black{
max-width:1200px;
margin:100px auto;
padding:80px;
border-radius:12px;
background:var(--rm-pad);
}

/* HERO */
.lb-hero-container{
max-width:1800px;
margin:0 auto;
display:flex;
justify-content:space-between;
align-items:center;
gap:80px;
}

.lb-eyebrow{
font-size:16px;
letter-spacing:3px;
text-transform:uppercase;
color:var(--rm-accent);
margin-bottom:24px;
}

.lb-hero h1{
font-size:60px;
line-height:1.05;
margin-bottom:40px;
}

/* H2 GLOBAL GRANDE */
.lb-hero h2,
.lb-section h2,
.lb-section-black h2{
font-size:64px;
line-height:1.1;
margin-bottom:40px;
}

.lb-hero-right{
display:flex;
gap:30px;
max-width:520px;
}

.lb-hero-line{
width:6px;
background:var(--rm-accent);
}

.lb-hero-text{
font-size:24px;
line-height:1.5;
}

/* SECCIONES */
.lb-section-inner{
max-width:850px;
margin:0 auto;
text-align:center;
}

.lb-section p{
font-size:22px;
line-height:1.6;
}

/* LINEA */
.lb-line{
width:100px;
height:6px;
background:var(--rm-accent);
margin:30px auto 50px auto;
}

/* DAMERO */
.lb-damero{
display:flex;
align-items:center;
justify-content:center;
gap:80px;
margin-top:100px;
}

.lb-damero.reverse{
flex-direction:row-reverse;
}

.lb-damero-img img{
width:100%;
max-width:480px;
}

.lb-damero-text{
max-width:700px;
}

.lb-damero-text h3{
font-size:28px;
margin-bottom:20px;
}

.lb-damero-text p{
font-size:20px;
line-height:1.6;
}

/* LINKS */
.lb-link{
display:inline-block;
margin-top:15px;
text-decoration:underline;
color:var(--rm-accent);
}

/* PASOS */
.lb-steps-grid{
margin:70px auto 0 auto;
max-width:900px;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px 90px;
}

.lb-step{
display:flex;
gap:20px;
}

.lb-step span{
font-size:48px;
color:var(--rm-accent);
min-width:60px;
}

.lb-step p{
font-size:22px;
}

/* GRID */
.lb-grid-3{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:60px;
margin-top:70px;
}

/* CARDS */
.lb-card{
padding:50px;
border:2px solid var(--rm-accent);
background:var(--rm-pad);
transition:0.3s;
}

.lb-card:hover{
background:var(--rm-pad-soft);
}

/* GALERÍA */
.lb-gallery-vertical{
display:flex;
flex-direction:column;
gap:60px;
margin-top:70px;
}

.lb-gallery-vertical img{
width:100%;
max-width:900px;
margin:0 auto;
border-radius:10px;
}

/* BOTÓN */
.lb-btn{
display:inline-block;
padding:18px 40px;
background:var(--rm-btn);
color:white;
text-decoration:none;
font-size:16px;
letter-spacing:1px;
border-radius:6px;
transition:0.3s;
}

.lb-btn:hover{
background:#a31214;
transform:translateY(-2px);
}

/* WRAPPER */
.rm-wrapper{
max-width:1600px;
margin:120px auto;
padding:0 40px;
}

/* CARRUSEL */
.ns-slider{
position:relative;
width:100%;
max-width:800px;
aspect-ratio:1/1;
overflow:hidden;
border-radius:12px;
}

.ns-slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity 1s ease;
}

.ns-slide.is-active{
opacity:1;
}

/* RESPONSIVE */
@media (max-width:480px){

.rm-wrapper{
margin:40px auto;
padding:0 16px;
}

.lb-hero,
.lb-section,
.lb-section-black{
margin:24px auto;
padding:32px 20px;
}

.lb-hero-container,
.lb-damero{
flex-direction:column;
text-align:center;
gap:24px;
}

.lb-hero h1{
font-size:40px;
}

.lb-hero-text{
font-size:20px;
}

.lb-hero h2,
.lb-section h2,
.lb-section-black h2{
font-size:32px;
}

.lb-section p{
font-size:18px;
}

.lb-grid-3{
grid-template-columns:1fr;
}

.lb-btn{
width:100%;
text-align:center;
}

}