/* Archivo styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html, body {
  height: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.logo {
  height: 60px;
  max-width: 100%;
  object-fit: contain;
}

.logo_mobile {
  display: none;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.navbar a {
  text-decoration: none;
  color: #2a2a2a;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}

.navbar a:hover {
  color: #3a863a;
}

/* Hero */
.hero {
  background: url('../Img/background.jpg') center 40% no-repeat;
  background-size: cover;
  min-height: calc(100vh - 60px);
  padding-top: 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #0a3d0a;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #1e1e1e;
}

.btn-principal {
  background-color: #3a863a;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.btn-principal:hover {
  background-color: #2d6b2d;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #f4f4f4;
  font-size: 0.9rem;
  color: #777;
}

.home_msg {
  margin-top: 100px;
  text-align: center;
}

.input-wrapper {
  position: relative;
  width: 250px;
  margin-bottom: 10px;
}

.input-wrapper p {
  font-size: 12px;
  width: 100%;
  border: 0;
  border-radius: 5px;
  padding: 10px 5px 10px 60px;
  color: #0D0D0D;
  box-shadow: 0 0 20px rgba(192, 203, 251, 0.7);
  outline: none;
  margin: 0px;
  text-align: left;
}

.incli {
  padding: 10px 5px 10px 60px;
  border: 0;
  border-radius: 5px;
  font-size: 16px;
  color: #0D0D0D;
  box-shadow: 0 0 20px rgba(192, 203, 251, 0.7);
  outline: none;
}

.incli::placeholder {
  font-size: 16px;
  color: #BBBBE2;
}

.input-icon {
  position: absolute;
  height: 30px;
  width: 30px;
  top: 50%;
  left: 10px;
  transform: translateY(-55%);
}

.btn-registro {
  width: 200px;
  padding: 10px 5px 10px 10px;
  border: 0;
  border-radius: 5px;
  background-color: #5c5c5c;
  box-shadow: 0 0 20px rgba(192, 203, 251, 0.7);
  color: #ffffff !important;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

.btn-registro:hover {
  background: #a0def5;
  color: #4c4c4c !important;
}

.success {
  position: absolute;
  top: 50px;
  color: #00C83C;
  font-size: 18px;
}

.error {
  position: absolute;
  top: 50px;
  color: #E02D00;
  font-size: 18px;
}
#error_msg{
  color: #fff;
}
#chat {
  width: 285px;
  min-height: 50px;
  background-color: #f5f3f3;
  padding: 12px 20px;
  border: 0;
  border-radius: 5px;
  font-size: 16px;
  color: #0D0D0D;
  box-shadow: 0 0 20px rgba(192, 203, 251, 0.7);
  outline: none;
  resize: none;
}

.btn-contacto,
.btn-login {
  width: 285px;
  padding: 10px 5px 10px 10px;
  border: 0;
  border-radius: 5px;
  background-color: #5c5c5c;
  box-shadow: 0 0 20px rgba(192, 203, 251, 0.7);
  color: #ffffff !important;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

/*.btn-contacto {
  transform: translateX(6%);
}*/

/* ======= MENÚ HAMBURGUESA ======= */
#hamburger-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 30px;
  padding: 10px;
  position: fixed;
  top: 12px;
  right: 20px;
  z-index: 1100;
  cursor: pointer;
  background: none;
  border: none;
}

/* Menú desplegable */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: #1081b2;
  z-index: 1050;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hamburger-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hamburger-menu ul li {
  border-bottom: 1px solid #2b2a2a;
}

.hamburger-menu ul li a {
  display: block;
  padding: 25px 16px;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
}

.hamburger-menu ul li a:hover {
  background-color: #000;
}

/* RESPONSIVE: menú en mobile */
@media screen and (max-width: 1024px) {
  .hamburger {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  #hamburger-toggle:checked ~ .hamburger-menu {
    display: block;
  }
}

/* Solo por si volvés a usar logo_mobile */
@media screen and (max-width: 800px) {
  .logo_mobile {
    display: none;
  }
}

.contenido {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  color: #333;
  line-height: 1.6;
}

.contenido h1{
  font-size: 2rem;
  margin-top: 220px;
  margin-bottom: 40px;
  color: #000;
}

.contenido h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  border-bottom: 2px solid #4CAF50;
  display: inline-block;
  padding-bottom: 6px;
  color: #555;
}

.contenido ul {
  list-style: none;
  margin-top: 20px;
  padding-left: 0;
}

.contenido li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 24px;
}

.contenido li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}

.galeria-campos {
  margin: 80px auto;
  text-align: center;
  max-width: 1200px;
}

.galeria-campos h2 {
  font-size: 1.8rem;
  border-bottom: 2px solid #4CAF50;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 32px;
  color: #555;
}

.galeria-campos .imagenes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.galeria-campos img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-campos img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
