
 /* ================================================= */
/* VARIABLES */
/* ================================================= */

:root{
--primary:#7E9475;
--primary-dark:#4F6348;
}

/* ================================================= */
/* GLOBAL */
/* ================================================= */

body{
font-family:'Roboto',sans-serif;
}

/* TITLES */

.section-title{
  font-size:2.3rem;
  font-weight:700;
  letter-spacing:0.5px;
  color:#3d6b4f;
}

.section-title::after{
  content:"";
  display:block;
  width:60px;
  height:3px;
  background:#3d6b4f;
  margin:15px auto;
}

.section-subtitle{
  font-size:1.2rem;
  color:#4a4a4a;
  max-width:800px;
  margin:auto;
  line-height:1.5;
}

/* ================================================= */
/* NAVBAR */
/* ================================================= */

.custom-navbar{
background:rgba(57,75,52,0.35);
backdrop-filter:blur(8px);
transition:all .3s ease;
}

.custom-navbar.scrolled{
background:rgba(57,75,52,0.95);
box-shadow:0 4px 12px rgba(0,0,0,.2);
}

/* ================================================= */
/* HERO */
/* ================================================= */

.video-hero{
position:relative;
width:100%;
height:100vh;
overflow:hidden;
}

.hero-img{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
object-position:center;
z-index:0;
}

.video-hero::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
rgba(0,0,0,0.55),
rgba(0,0,0,0.35)
);
z-index:1;
}

.video-hero::before{
content:"";
position:absolute;
bottom:-1px;
left:0;
width:100%;
height:120px;
background:linear-gradient(to bottom,transparent,white);
z-index:1;
}

.hero-content{
position:relative;
z-index:2;
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:#fff;
padding:20px;
}

.hero-content h1{
font-size:3.4rem;
font-weight:700;
letter-spacing:.5px;
}

.hero-content p{
font-size:1.25rem;
opacity:.9;
}

/* ================================================= */
/* SERVICE IMAGES */
/* ================================================= */

.card img{
height:220px;
object-fit:cover;
}

.service-card{
border-radius:10px;
overflow:hidden;
transition:all .35s ease;
}

.service-card img{
transition:transform .6s ease;
}

.service-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.service-card:hover img{
transform:scale(1.05);
}

/* ================================================= */
/* KEY ADVANTAGES */
/* ================================================= */

.adv-card{
padding:25px;
background:white;
border-radius:8px;
transition:all .3s ease;
}

.adv-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
border-top:3px solid #3d6b4f;
}

.adv-icon{
font-size:34px;
color:#3d6b4f;
margin-bottom:12px;
transition:all .3s ease;
}

.adv-card:hover .adv-icon{
color:#1f4f35;
transform:scale(1.2);
}

.adv-title{
font-weight:600;
font-size:18px;
margin-bottom:6px;
}

/* ================================================= */
/* TEXT */
/* ================================================= */

.card-text{
text-align:justify;
}

/* ================================================= */
/* ANIMATION */
/* ================================================= */

.reveal{
opacity:0;
transform:translateY(40px);
transition:.8s;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* ================================================= */
/* FOOTER */
/* ================================================= */

.site-footer{
background:rgba(57,75,52,.95);
color:#adb5bd;
padding:40px 0 20px;
margin-top:60px;
border-top:3px solid #7E9475;
}

.site-footer h6{
color:#fff;
margin-bottom:15px;
}

.footer-links{
list-style:none;
padding:0;
}

.footer-links li{
margin-bottom:6px;
}

.footer-links a{
color:#adb5bd;
text-decoration:none;
transition:.3s;
}

.footer-links a:hover{
color:#0d6efd;
}

.site-footer hr{
border-color:rgba(255,255,255,.1);
margin:30px 0;
}

.footer-bottom{
text-align:center;
font-size:.9rem;
}

footer a {
  color: #adb5bd; /* mismo color que el texto */
  text-decoration: none;
}

footer a:hover {
  color: #ffffff; /* opcional: blanco al pasar el mouse */
}