/* =========================================================
   Paleta de colores principal (editable)
========================================================= */
:root{
  --verde-oscuro-1: #209151; /* acento profundo (texto o botones) */
  --verde-bosque:    #1F6A2B; /* títulos principales */
  --verde-medio:     #88B337; /* botones, highlighted cards */
  --verde-claro:     #B9D86A; /* hover / acentos suaves */
  --verde-fondo:     #E6F2B9; /* fondos suaves */
  --texto-oscuro:    #14321f; /* texto principal sobre claros */
  --blanco:          #ffffff;
}

/* =========================================================
   Reset y estilos base
========================================================= */
* { margin:0; padding:0; box-sizing:border-box; font-family: 'Poppins', sans-serif; }

body {
  background-color: var(--verde-fondo);
  color: var(--texto-oscuro);
}

main { /*padding-top:100px;*/ }

/* =========================================================
   Header y navegación
========================================================= */
header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px;
  background-color: var(--verde-oscuro-1);
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
}

header .logo {
  font-size:1.5rem;
  font-weight:bold;
  color: var(--blanco);
}

header nav ul {
  display:flex;
  list-style:none;
  gap:20px;
}

header nav ul li a {
  text-decoration:none;
  color: var(--blanco);
  font-weight:bold;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: var(--verde-claro);
}

.hamburger {
  display:none;
  cursor:pointer;
  font-size:1.5rem;
  color: var(--blanco);
}

/* =========================================================
   Sección Hero
========================================================= */
.hero {
  text-align:center;
  padding:50px 20px;
  background-color: var(--blanco);
}

.hero img { max-width:50%; border-radius:10px; margin-top:20px; }

.hero h1 {
  font-size: 2rem;
  color: var(--verde-bosque);
  text-align: center;
  margin-bottom: 10px;
}

.hero h3 {
  font-size: 1.3rem;
  color: var(--verde-oscuro-1);
  text-align: center;
  margin-bottom: 25px;
}

.hero p {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.6;
  font-size: 1rem;
  color: var(--texto-oscuro);
  margin-top: 30px;
  background-color: var(--verde-fondo);
  padding: 10px 20px;
  border-radius: 10px;
}

/* =========================================================
   Secciones generales y MENU
========================================================= */
section { padding:50px 20px; }

.logo {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700; /* Negrita elegante */
  letter-spacing: 1px; /* opcional, da un toque más limpio */
  color: var(--verde-bosque); /* si ya estás usando tus variables */
}

h2 {
  color: var(--verde-bosque);
  margin-bottom:20px;
  text-align: center;
}
/* También podés aplicar a los enlaces del menú */
.menu li a {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: var(--verde-oscuro-1);
  transition: color 0.3s;
}

.menu li a:hover {
  color: var(--verde-medio);
}

/* =========================================================
   Cards de servicios
========================================================= */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: var(--verde-medio);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  background-color: var(--verde-claro);
  color: var(--texto-oscuro);
}

/* =========================================================
   Galería
========================================================= */
.gallery {
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:center;
}

.gallery img {
  width:200px;
  border-radius:10px;
}

/* =========================================================
   Footer
========================================================= */
footer {
  text-align:left;
  padding:20px;
  background-color: var(--verde-oscuro-1);
  color: var(--blanco);
  position:relative;
}

/* =========================================================
   Botón flotante de WhatsApp
========================================================= */
.whatsapp-button {
  position:fixed;
  bottom:50px;
  right:30px;
  background-color: var(--verde-bosque);
  color: var(--blanco);
  padding:15px 20px;
  border-radius:50px;
  text-decoration:none;
  font-weight:bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* =========================================================
   Responsive
========================================================= */
@media(max-width:768px){
  header nav ul {
    display:none;
    flex-direction:column;
    gap:10px;
    background-color: var(--verde-oscuro-1);
    position:absolute;
    top:70px;
    right:0;
    width:200px;
    padding:20px;
    border-radius:0 0 10px 10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
  }

  header nav ul.show { display:flex; }
  .hamburger { display:block; }
}

/* =========================================================
   Animación: entrada desde la izquierda
========================================================= */
.fade-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   Lista "¿Por qué elegirnos?"
========================================================= */
.gf-features { list-style: none; padding: 0; margin: 0 auto; display:inline-block; text-align:left; }
.gf-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--verde-bosque);
  font-weight: 600;
}
.gf-features .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--verde-fondo);
  font-size: 18px;
}
@media (max-width: 480px) {
  .gf-features li { font-size: 15px; }
  .gf-features .icon { min-width: 30px; height: 30px; font-size: 16px; }
}

