/* =========================
   HERO
========================= */

.soc-hero{
height:70vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;

background:
linear-gradient(rgba(255,106,0,.6), rgba(255,106,0,.4)),
url("https://picsum.photos/1200/700?people");

background-size:cover;
background-position:center;
color:white;
}

.soc-hero h1{
font-size:48px;
margin-bottom:10px;
}

.soc-btn{
background:white;
color:#ff6a00;
padding:12px 25px;
border-radius:25px;
text-decoration:none;
font-weight:bold;
}

/* =========================
   INFO
========================= */

.soc-info{
padding:60px 20px;
text-align:center;
}

.soc-info-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

.soc-info-card{
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.soc-info-card:hover{
transform:translateY(-5px);
}

/* =========================
   BLOQUE NARANJA
========================= */

.soc-highlight{
background:#ff6a00;
color:white;
padding:60px 20px;
text-align:center;
}

.soc-highlight-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:30px;
}

.highlight-card{
background:rgba(255,255,255,.15);
padding:20px;
border-radius:15px;
backdrop-filter:blur(5px);
}

/* =========================
   TESTIMONIOS
========================= */

.soc-testimonials{
padding:60px 20px;
text-align:center;
}

.testimonial-box{
max-width:600px;
margin:auto;
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.1);
}

/* =========================
   NEWS
========================= */

.soc-news{
padding:40px 20px;
}

.soc-news-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.soc-card{
background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.soc-card:hover{
transform:translateY(-8px);
}

.soc-card img{
width:100%;
height:200px;
object-fit:cover;
}

.soc-card h3{
padding:15px;
}

/* =========================
   TITULOS
========================= */

.section-title{
font-size:28px;
margin-bottom:20px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

.soc-hero h1{
font-size:32px;
}

}