/* BASE */

.about-page{
font-family:'Poppins', sans-serif;
background:#f7f7f7;
}

/* HERO */

.about-hero{
height:60vh;
background:linear-gradient(120deg,#ff6a00,#ff8c42);
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.about-hero h1{
font-size:42px;
}

/* SECCION GENERAL */

.about-section{
padding:60px 10%;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about-grid img{
width:100%;
border-radius:15px;
}

/* DIVISOR */

.about-divider{
height:80px;
background:linear-gradient(90deg,#ff6a00,#ff8c42);
clip-path:polygon(0 0,100% 40%,100% 100%,0 100%);
}

/* VALORES */

.about-values{
padding:60px 10%;
background:white;
}

.values-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.value-card{
background:#f4f4f4;
padding:30px;
border-radius:15px;
transition:.3s;
}

.value-card.highlight{
background:#ff6a00;
color:white;
}

.value-card:hover{
transform:translateY(-5px);
}

/* TEAM */

.about-team{
padding:60px 10%;
text-align:center;
}

.team-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-top:30px;
}

.team-card{
background:white;
padding:20px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.team-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(255,106,0,.3);
}

.team-card img{
width:100px;
height:100px;
border-radius:50%;
margin-bottom:10px;
}

/* CTA */

.about-cta{
background:#1a1a1a;
color:white;
text-align:center;
padding:60px 20px;
}

.about-cta a{
display:inline-block;
margin-top:15px;
background:#ff6a00;
padding:12px 25px;
border-radius:25px;
color:white;
text-decoration:none;
}

/* RESPONSIVE */

@media(max-width:768px){

.about-grid,
.values-grid{
grid-template-columns:1fr;
}

.about-hero h1{
font-size:30px;
}

}