:root{
  --cr-primary:#ef4b4b;    
  --cr-bg:#ffeded;           
  --cr-dark:#222;
  --cr-gray:#6f6f6f;
  --radius:18px;
  --container:1120px;

 
  --illu-gray:#9b9b9b;
}

*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:#222;background:#fff;line-height:1.55}
img{max-width:100%;height:auto;display:block}

a{color:var(--cr-primary);text-decoration:none}
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.9rem 1.1rem;border-radius:999px;font-weight:700}
.btn-primary{background:var(--cr-primary);color:#fff}
.btn-outline{border:2px solid var(--cr-primary);color:var(--cr-primary);background:#fff}

.container{max-width:var(--container);margin:0 auto;padding:0 1rem}
.grid{display:grid;gap:1rem}
.grid-2{grid-template-columns:1.1fr .9fr}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:980px){.grid-2,.grid-3{grid-template-columns:1fr}}
.grid.align-center{align-items:center}

/* ===== Header (logo grande pero franja contenida) ===== */
header.site{position:sticky;top:0;background:#fff;border-bottom:1px solid #eee;z-index:50;overflow:hidden}
header .nav{display:flex;align-items:center;justify-content:space-between;height:74px}
.brand{display:flex;align-items:center;gap:.6rem;font-weight:800;letter-spacing:.2px}
.brand img{height:180px}
@media (max-width:980px){
  header .nav{height:68px}
  .brand img{height:42px}
}

/* ===== Héroe ===== */
.hero{background:#fff;padding:2.2rem 0}
.hero .panel{background:var(--cr-primary);border-radius:var(--radius);padding:2rem;color:#fff}
.hero h1{font-size:2.6rem;line-height:1; margin:.2rem 0 1rem}

/* ===== Secciones ===== */
.section{padding:3rem 0}
.section-title{font-size:2rem;margin:0 0 1.25rem;font-weight:800;color:var(--cr-primary);text-align:center}

.card{background:#fff;border-radius:var(--radius);box-shadow:0 12px 28px rgba(0,0,0,.06);overflow:hidden}
.card .p{padding:1rem}

figure.cover{aspect-ratio:4/3;overflow:hidden}
figure.cover>img{width:100%;height:100%;object-fit:cover}

.block-pink{background:var(--cr-bg)}
.block-red{background:var(--cr-primary);color:#f1f1f0}

.review{background:#fff;border-radius:var(--radius);padding:1rem;color:#353539}
.avatar{width:132px;height:132px;border-radius:50%;object-fit:cover}

footer{background:#fff;border-top:1px solid #eee;padding:2rem 0;margin-top:2rem}
.muted{color:var(--cr-gray)}
.center{text-align:center}
.mt-2{margin-top:.5rem}.mt-3{margin-top:1rem}.mt-6{margin-top:2rem}

.band{padding:3rem 0}
.band--red{background:var(--cr-primary);color:#fff}
.band--pink{background:var(--cr-bg);color:#222}

.band--gray{
  background:var(--illu-gray);
  color:#111;
  padding: 0; 
  display: flex;
  align-items: stretch;
}

.band--gray .container {
  padding: 0;
}

.band--gray .grid {
  align-items: center;
  grid-template-columns: 1fr 0.9fr; 
  column-gap: 2rem; 
}

.band--gray .grid > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2rem;
}

.band--gray figure.flat-figure {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  height: 100%;
  justify-content: flex-end;
}

.band--gray figure.flat-figure img {
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
}

.band--gray figure.flat-figure img {
  max-height: 320px; 
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin-right: 2rem; 
}

.band--gray .btn-primary {
  display: inline-flex !important; 
  width: auto !important;        
  max-width: fit-content;        
  padding: 0.7rem 1.6rem;        
  font-size: 1rem;
  border-radius: 999px;
  white-space: nowrap;            
  align-self: flex-start;       
}