/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f0fdf4;
  color: #333;
}

/* ENCABEZADO */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header .logo-izq img {
  height: 90px;
}

header .logo-der img {
  height: 130px;
}

header .titulo h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  color: #008000;
  margin: 0;
  font-weight: 700;
  text-align: center;
}

/* Botón menú hamburguesa */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 12px 0;
  color: #fff;
  background-color: #008000;
  border: none;
  width: 100%;
  text-align: center;
}

/* Menú */
nav {
  background: #008000;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav ul li a {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: background 0.3s;
}

nav ul li a:hover,
nav ul li a.activo {
  background: #006400;
}

/* Calendario embed */
.calendario-embed {
  max-width: 100%;
  width: 100%;
  margin: 20px auto;
}

.calendario-embed iframe {
  width: 100%;
  height: 600px;
  max-width: 100%;
  border: 0;
}

/* Agri flotante */
.agri-float {
  position: fixed;
  bottom: 15px;
  right: 15px;
  text-align: center;
}

.agri-float img {
  width: 90px;
  transition: transform 0.3s;
}

.agri-float p {
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  margin-top: 5px;
  font-weight: 600;
  color: black;
  transition: color 0.3s;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px 0;
  background-color: #008000;
  color: #fff;
  margin-top: 20px;
}

/* ======= MEDIA QUERY PARA CELULARES ======= */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  header .logo-izq img,
  header .logo-der img {
    height: 60px;
    width: auto;
  }

  header .titulo h1 {
    font-size: 24px;
  }

  .menu-toggle {
    display: block;
  }

  nav ul {
    flex-direction: column;
    display: none; /* oculto por defecto */
    width: 100%;
    text-align: center;
  }

  nav ul.activo {
    display: flex;
  }

  nav ul li a {
    padding: 12px 0;
  }

  .agri-float img {
    width: 80px;
  }

  .calendario-embed iframe {
    height: 400px; /* ajustar altura para móvil */
  }
}
@import "mobile.css";
