/* ================================================= */
/* 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 */
/* ================================================= */

/* 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;
}

.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;
}
/* ================================================= */
/* PROCESS SECTION */
/* ================================================= */

.process-section{
  background:#f8f9f8;
}

.process-card{
  background:white;
  border-radius:10px;
  overflow:hidden;
  transition:all .3s ease;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.process-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.process-img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.process-title{
  font-size:1.2rem;
  font-weight:600;
  padding:15px;
  margin:0;
}

/* ================================================= */
/* KEY STAGES */
/* ================================================= */

.adv-card{
  padding:25px;
  background:white;
  border-radius:8px;
  transition:.3s;
}

.adv-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,.15);
  border-top:3px solid #3d6b4f;
}

.adv-icon{
  font-size:34px;
  color:#3d6b4f;
  margin-bottom:12px;
  transition:.3s;
}

.adv-card:hover .adv-icon{
  color:#1f4f35;
  transform:scale(1.2);
}

.adv-title{
  font-weight:600;
  font-size:18px;
  margin-bottom:6px;
}

/* ================================================= */
/* ANIMATION */
/* ================================================= */

.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:.8s;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* ================================= */
/* APPLICATIONS */
/* ================================= */

.applications-section{
background:#f8f9f8;
}

.app-card{
background:white;
border-radius:10px;
overflow:hidden;
transition:.3s;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.app-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.app-img{
width:100%;
height:180px;
object-fit:cover;
}

.app-title{
padding:12px;
font-weight:600;
margin: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;
}

.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 */
}


footer a {
  color: #adb5bd; /* mismo color que el texto */
  text-decoration: none;
}

footer a:hover {
  color: #ffffff; /* opcional: blanco al pasar el mouse */
}