
@media (max-width: 786px) {
  .hero {
    height: auto;
    padding-top: 130px;  /* deja espacio debajo del menú blanco */
    padding-bottom: 50px;
  }

  .hero-content {
    margin-top: 0;
  }
    .botones {
    flex-direction: column;
    gap: 10px;
    align-items: center; /* centra los botones */
  }

  .botones a {
    width: 80%;        /* ancho responsive */
    text-align: center; /* texto centrado */
    padding: 12px 0;   /* reduce altura para que no se corte */
    font-size: 16px;    /* tamaño de texto adecuado */
  }
}
/* Oculto por defecto en escritorio */
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #333;
}
@media (max-width: 768px) {

  /* NAVBAR */


  .logo-container h1 {
    font-size: 18px;
  }

  /* Mostrar botón menú */
  .menu-toggle {
    display: block;
  }

  /* Ocultar menú inicialmente */
.nav-links {
    position: absolute; /* menú flotante */
    top: 100%;          /* justo debajo del navbar */
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 15px 0;
    z-index: 20;        /* sobre el hero */
  }

  .nav-links.active {
    display: flex;
  }

  .navbar-blanca {
    position: relative; /* para que nav-links absolute funcione dentro */
  }

  .nav-links li a {
    font-size: 18px;
    padding: 10px 0;
  }
  .hero-content{
    padding-top:150px;
  }

  /* HERO */
  .hero-content h2 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .botones {
    flex-direction: column;
    gap: 10px;
  }

  /* CARACTERISTICAS */
  .caracteristicas {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  /* SOBRE NOSOTROS */
  .sobre-contenido {
    flex-direction: column;
  }

  .sobre-imagen img {
    width: 100%;
    height: auto;
  }

  /* PLANTAS */
  .plantas-container {
    grid-template-columns: 1fr;
  }

  /* CERTIFICADOS */
  .certificados-container {
    flex-direction: column;
    align-items: center;
  }

  /* FOOTER */
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

.wcs_button img {
    width: 40px;
    height: 40px;
}

/* ------------------- RESET ------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #111;
    color: #fff;
}

/* ------------------- NAVBAR BLANCA ------------------- */
.navbar-blanca {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #fff;
    color: #000;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #4c575f;
}
.link{
    text-decoration: none;
}

.logo {
    height: 70px;
    width: auto;
}

@media (min-width: 768px) {
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    font-size: 20px;
}
}

.nav-links a {
    color: #4c575f;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #f79129;
}

/* ------------------- SECCIÓN POLÍTICA ------------------- */
.politica-privacidad {
    background: #f8f9fa;
    color: #333;
    padding: 6rem 12%;
    margin-top: -100px; /* sube para compensar el hero */
}

.politica-privacidad h2 {
    text-align: center;
    font-size: 2rem;
    color: #4c575f;
    margin-bottom: 2rem;
    font-weight: 700;
}

.politica-privacidad h3 {
    color: #000;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.politica-privacidad p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1rem;
}

.politica-privacidad a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.politica-privacidad a:hover {
    text-decoration: underline;
}

/* ------------------- RESPONSIVE ------------------- */
@media (max-width: 768px) {
    .navbar-blanca {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .hero {
        height: 50vh;
        padding: 0 5%;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .politica-privacidad {
        padding: 4rem 8%;
    }
}
/* --- FOOTER --- */
.footer {
    background-color: #111;
    color: #fff;
    padding: 4rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    flex: 1 1 250px;
}

.footer-img {
    width: 120px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Enlaces */
.footer-links h4,
.footer-contacto h4 {
    color: #f79129;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f79129;
}

/* Contacto */
.footer-contacto p {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-contacto i {
    color: #f79129;
    margin-right: 8px;
}

/* Línea inferior */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 3rem;
    padding-top: 1rem;
    color: #aaa;
    font-size: 0.9rem;
    
}
.footer-bottom a{
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo, .footer-links, .footer-contacto {
        flex: 1 1 100%;
    }
}

