:root{
--primary:#14335B;
--secondary:#8DC76D;
--dark:#202020;
--light:#f5f7fa;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Segoe UI',sans-serif;
background:#fff;
color:#333;
overflow-x:hidden;
}

/* =========================
HERO
========================= */

.hero{
min-height:80vh;


background:
linear-gradient(
    rgba(20,51,91,.55),
    rgba(20,51,91,.55)
),
url('../img/hero2.jpeg');

background-size:cover;
background-position:60% 50%;
background-repeat:no-repeat;

display:flex;
align-items:center;

color:white;


}

.logo-baes{
max-width:550px;
width:40%;
height:auto;
margin-bottom:30px;
}

.hero-tag{
font-family:'Bebas Neue', sans-serif;
color:var(--secondary);
letter-spacing:3px;
font-size:1.3rem;
margin-bottom:15px;
}

.hero h1{
font-family:'Bebas Neue', sans-serif;
text-transform: lowercase;
font-size:clamp(2.8rem,6vw,5rem);
line-height:.95;
letter-spacing:1px;
font-weight:400;
margin-top: 15px;
margin-bottom:25px;
text-shadow:0 4px 15px rgba(0,0,0,.4);
}

.hero p{
font-family:'Segoe UI',sans-serif;
font-size:1.5rem;
font-weight:300;
line-height:1.5;
max-width:850px;
color:rgba(255,255,255,.95);
margin-bottom:35px;
}

/* =========================
BOTON
========================= */

.btn-baes{
background:#87d991;
color:var(--primary);
font-family:'Bebas Neue',sans-serif;
font-size:1.5rem;
letter-spacing:1px;
padding:15px 35px;
border-radius:10px;
text-decoration:none;
transition:.3s;
}

.btn-baes:hover{
background:#7ab85c;
color:var(--primary);
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(0,0,0,.25);
}

/* =========================
TITULOS
========================= */

.section-title{
font-size:2.5rem;
font-weight:700;
color:var(--primary);
margin-bottom:50px;
text-align:center;
font-family:'Bebas Neue',sans-serif;
}

/* =========================
ESTADISTICAS
========================= */

.stats{
background:var(--primary);
color:white;
padding:60px 0;
}

.stats h2{
font-size:3rem;
color:var(--secondary);
font-family:'Bebas Neue',sans-serif;
}

.stats p{
margin-top:10px;
font-size:1.1rem;
}

/* =========================
GALERIA
========================= */

.gallery-img{
width:100%;
height:350px;
object-fit:cover;
border-radius:15px;
transition:.4s;
box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.gallery-img:hover{
transform:scale(1.04);
}

/* =========================
SERVICIOS
========================= */
.service-card{
    background:#fff;
    padding:30px 20px;
    border-radius:12px;
    text-align:center;
    height:100%;
    transition:.3s;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.service-card:hover{
    transform:translateY(-5px);
}

.service-card i{
    font-size:3rem;
    color:var(--secondary);
    margin-bottom:15px;
    display:block;
}

.service-card h4{
    font-size:1.1rem;
    font-weight:600;
    margin:0;
}

/* =========================
CLIENTES
========================= */

#clientes{
background:#f7f7f7;
padding:80px 0;
}

#clientes img{
max-height:90px;
filter:grayscale(100%);
opacity:.7;
transition:.3s;
}

#clientes img:hover{
filter:none;
opacity:1;
transform:scale(1.05);
}

/* =========================
CONTACTO
========================= */

#contacto{
padding:80px 0;
}

#contacto h2{
color:var(--primary);
margin-bottom:20px;
}

/* =========================
WHATSAPP
========================= */

.whatsapp{
position:fixed;
right:25px;
bottom:25px;


width:65px;
height:65px;

background:#25D366;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

color:white;
text-decoration:none;

font-size:34px;

z-index:9999;

box-shadow:0 8px 20px rgba(0,0,0,.3);

transition:.3s;


}

.whatsapp:hover{
color:white;
transform:scale(1.1);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:992px){


.hero{
    background-size:cover;
    background-position:center center;
}

.logo-baes{
    max-width:350px;
}


}

@media(max-width:768px){


.hero{
    text-align:center;
}

.logo-baes{
    max-width:250px;
    margin:auto auto 25px;
}

.hero h1{
    font-size:3rem;
}

.hero p{
    font-size:1.1rem;
}

.stats h2{
    font-size:2rem;
}

.gallery-img{
    height:250px;
}


}
