@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Poppins:wght@400;500;600&family=Roboto:wght@400;500&display=swap');

:root { --verde-principal: #008000; }

body { font-family: 'Roboto', sans-serif; overflow-x: hidden; }
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; }

/* NAVBAR */
.custom-navbar { background-color: var(--verde-principal) !important; }

.custom-navbar .nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 15px;
  color: rgba(255,255,255,0.7) !important;
  transition: all 0.3s ease;
  position: relative;
}

.custom-navbar .nav-link:hover { color: #fff !important; }
.custom-navbar .nav-link.active { color: #fff !important; font-weight: 700; }

@media (min-width: 992px) {
  .custom-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: 10px;
    left: 0;
    border-radius: 2px;
  }
}

@media (max-width: 991.98px) {
  .custom-navbar .navbar-collapse {
    background-color: var(--verde-principal);
    padding: 20px;
    border-radius: 0 0 15px 15px;
  }
  .custom-navbar .nav-link { margin: 4px 0; padding: 8px 12px; }
  .custom-navbar .nav-link.active {
    background-color: rgba(255,255,255,0.2);
    border-radius: 5px;
  }
  .custom-navbar .nav-link.active::after { display: none; }
}

/* TÍTULOS VERDES */
.green-full-header {
  background-color: var(--verde-principal);
  padding: 15px 20px;
  width: 100%;
}

.green-full-header h2 {
  margin: 0;
  font-size: calc(1.1rem + 1vw);
  letter-spacing: 1.2px;
}

/* SECCIONES */
.seccion-claro { background-color: #f8f9fa; }

.texto-principal {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  font-family: 'Roboto', sans-serif;
}

/* BOTONES SERVICIOS */
.btn-servicio {
  background-color: var(--verde-principal);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: background-color 0.3s;
  min-width: 160px;
}

.btn-servicio:hover { background-color: #006600; color: white; }

/* VIDEO PANTALLA COMPLETA */
.video-fullscreen {
  width: 100%;
  background: #000;
  line-height: 0;
}

.video-fullscreen video {
  width: 100%;
  max-height: 85vh;
  display: block;
  object-fit: cover;
}

/* GALERÍA 4 COLUMNAS */
.foto-galeria {
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s;
  cursor: pointer;
}

.foto-galeria:hover { transform: scale(1.04); }

/* FOOTER */
footer { background-color: #008000; }
footer a { text-decoration: none; }

@media (max-width: 575.98px) {
  .green-full-header { padding: 12px 10px; }
  .green-full-header h2 { font-size: 1.1rem; }
  .btn-servicio { min-width: 130px; padding: 10px 16px; font-size: 0.8rem; }
  .foto-galeria { height: 120px; }
  footer .row > div { text-align: center !important; }
  footer img { height: 50px !important; }
}