*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins', sans-serif;
}

body{
background:#f5f5f5;
color:#4a4a4a;
line-height:1.6;
}


/* hero */

.hero{
position:relative;
height:520px;
overflow:hidden;
}

.hero-img{
width:100%;
height:100%;
object-fit:cover;
}

.hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
}

.hero-overlay{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
max-width:1200px;
padding:20px;
z-index:2;
}

.hero h1{
font-size:60px;
line-height:1.1;
margin-bottom:15px;
}

.hero p{
font-size:20px;
opacity:.9;
}


/* about */

.about{
background:white;
padding:120px 20px;
text-align:center;
}

.about h2{
font-size:36px;
margin-bottom:25px;
color:#1f5f8b;
}

.about p{
max-width:900px;
margin:auto;
margin-bottom:40px;
font-size:18px;
}

.logo{
width:150px;
mix-blend-mode:multiply;
}


/* experience */

.experience{
padding:100px 20px;
text-align:center;
}

.experience h2{
font-size:32px;
margin-bottom:50px;
color:#1f5f8b;
}

.cards{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

.card{
padding:35px;
border-radius:18px;
width:260px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:.3s;
backdrop-filter:blur(10px);
}

/* degradado de las cards */

.cards .card:nth-child(1){
background:linear-gradient(135deg,#f3cfcf,#d9e3f3);
}

.cards .card:nth-child(2){
background:linear-gradient(135deg,#f3cfcf,#d9e3f3);
}

.cards .card:nth-child(3){
background:linear-gradient(135deg,#f3cfcf,#d9e3f3);
}

.card:hover{
transform:translateY(-6px);
}

.icon{
width:48px;
height:48px;
margin-bottom:18px;
}

.card h3{
margin-bottom:10px;
font-size:20px;
}

.card p{
font-size:15px;
}


/* brands */

.brands{
padding:70px 20px;
text-align:center;
background:white;
}

.brands h2{
font-size:30px;
margin-bottom:10px;
color:#1f5f8b;
}

.brands p{
margin-bottom:40px;
color:#777;
}

.brands-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px 60px;
max-width:800px;
margin:auto;
align-items:center;
justify-items:center;
}

.brands-grid img{
height:40px;
width:auto;
filter:grayscale(100%);
opacity:.8;
object-fit:contain;
}

/* agrandar solo estos dos logos */

.rafia{
transform:scale(1.8);
}

.reyenvas{
transform:scale(2.2);
}


/* cta */

.cta{
position:relative;
height:360px;
overflow:hidden;
}

.cta img{
width:100%;
height:100%;
object-fit:cover;
}

.cta-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
}

.cta-content h2{
font-size:34px;
margin-bottom:15px;
}

.btn{
display:inline-block;
padding:12px 30px;
background:#e30613;
color:white;
text-decoration:none;
border-radius:30px;
font-weight:600;
}


/* footer */

footer{
text-align:center;
padding:28px;
background:#1f5f8b;
color:white;
font-size:14px;
}