/* =========================
   HERO
========================= */

.cul-hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:80px 10%;
gap:40px;

background:linear-gradient(
120deg,
#fff,
#fff5ef
);
}

.cul-hero-content{
max-width:500px;
}

.cul-hero-content h1{
font-size:42px;
margin-bottom:15px;
}

.cul-hero-content p{
margin-bottom:20px;
color:#555;
}

.cul-btn{
background:#ff6a00;
color:white;
padding:12px 25px;
border-radius:25px;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

.cul-btn:hover{
transform:translateY(-2px);
}

.cul-hero-img img{
width:320px;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* =========================
   GRID
========================= */

.cul-programs{
padding:60px 20px;
text-align:center;
}

.cul-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

.cul-card{
background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.cul-card:hover{
transform:translateY(-8px);
}

.cul-card img{
width:100%;
height:180px;
object-fit:cover;
}

.cul-card h3{
margin-top:10px;
}

.cul-card p{
padding:10px;
color:#666;
}

/* =========================
   HIGHLIGHT
========================= */

.cul-highlight{
padding:60px 10%;
}

.cul-highlight-container{
display:flex;
align-items:center;
gap:40px;
flex-wrap:wrap;
}

.cul-highlight-img img{
width:300px;
border-radius:20px;
}

.cul-highlight-text{
max-width:500px;
}

.cul-highlight-text h2{
margin-bottom:10px;
}

.cul-highlight-text a{
display:inline-block;
margin-top:15px;
background:#ff6a00;
color:white;
padding:10px 20px;
border-radius:10px;
text-decoration:none;
}

/* =========================
   NEWS
========================= */

.cul-news{
padding:40px 20px;
}

.cul-news-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.news-card{
background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.news-card:hover{
transform:translateY(-8px);
}

.news-card img{
width:100%;
height:200px;
object-fit:cover;
}

.news-card h3{
padding:15px;
}

/* =========================
   TITULOS
========================= */

.section-title{
font-size:28px;
margin-bottom:20px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

.cul-hero{
flex-direction:column;
text-align:center;
}

.cul-hero-img img{
width:100%;
}

}