:root{
  --rosa:#ffb3c7;
  --rosa-osc:#e06c93;
  --azul:#112a46;
  --fondo:#fff6f8;
}
*{
  box-sizing:border-box
}
body {
  position: relative;
  margin: 0;
  font-family: sans-serif;
  background-color: #fff6f8;
}
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("../img/callaoidentidad.png") center/contain no-repeat;
  background-size: 101%;
  opacity: 0.4;
  z-index: -1;
}
header{ 
  position:sticky; 
  top:0; z-index:10; 
  background: linear-gradient(90deg, var(--rosa), #ffd6e1); 
  border-bottom: 3px solid var(--rosa-osc);
}
.wrap{
  max-width:1050px; 
  margin:0 auto; 
  padding:0 16px
}
.wrap img{
  height:75px; 
  border-radius:50%; 
  object-fit:cover; 
  margin-right:8px
}
nav{ 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  gap:12px; 
  padding:10px 0;
}
.brand {
  font-family: "Honk", system-ui;
  font-size: 28px;
  font-weight: 400;
  color: #e06c93;
}
.brand span{
  color:var(--rosa-osc)
}
@import url('https://fonts.googleapis.com/css2?family=Honk&display=swap');

.menu a {
  font-family: "Honk", system-ui; 
  font-size: 45px; 
  text-decoration: none;
  color: #2aca3f;
  padding: 8px 10px;
  border-radius: 10px;
}
.menu a:hover{ 
background:#ffffffaa
}
.hero{ 
  position:relative; 
  overflow:hidden; 
  background: #fd90b4;
}
.hero img{ 
  width:100%; 
  height:360px; 
  object-fit:cover; 
  filter:saturate(1.05)
}
.hero .txt{ 
font-family: "Honk", system-ui;
font-size: 40px; 
position:absolute; 
inset:auto 0 1px 0; 
text-align:center; 
color:#1a0606; 
text-shadow: 0 2px 8px rgba(0,0,0,.45); 
font-size: clamp(22px, 4vw, 36px); 
font-weight:900;
}
section{ 
padding:36px 0; 
scroll-margin-top:70px 
}
h2{ 
color:var(--azul); 
margin:0 0 12px;
font-size: clamp(22px, 3.3vw, 28px);
}
.lead{
color:#333; 
margin:0 0 18px
}
.grid{ 
display:grid; 
gap:16px; 
grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
}
.card{ 
background:#fff; 
border:1px solid #eee; 

overflow:hidden; 
box-shadow: 0 6px 14px rgba(17,42,70,.05);
}
.card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 14px 14px 0 0;
  background: #fff;
}
.card .p{ 
padding:12px 14px 
}
.badge{
display:inline-block; 
background:var(--rosa); 
color:var(--azul); 
font-weight:700; 
padding:4px 10px; 
border-radius:999px; 
font-size:12px
}
.cols{ 
display:grid; 
gap:20px; 
grid-template-columns: 1.1fr .9fr 
}
@media (max-width:800px){ 
.cols{ 
grid-template-columns: 1fr} .hero img{height:280px}
}
footer{ 
background: var(--azul); 
color:#fff; 
padding:28px 0; 
margin-top:24px; 
border-top:4px solid var(--rosa-osc);
}
footer a{
color:#fff
}
.small{
font-size:.95rem
}
footer .wrap {
  text-align: center;
}