/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #f4f4f4;
}

/* ========== HERO / HEADER ========== */
.hero {
  background: url("img/fondo.webp") center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  width: 100%;
  z-index: 1000;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s ease;
}

.nav-links a:hover {
  color: #ffcc00;
}

.hero-content {
  background: url('img/monito2.webp') center no-repeat;
  background-size: auto; 
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px;
}


.hero-content h1 {
  font-size: 64px;
  color: #f4f4f4;
  transition: transform .3s ease, letter-spacing .3s ease;
}

.hero-content h1:hover {
  transform: scale(1.08);
  letter-spacing: 12px;
}

/* ========== PRIVACIDAD ========== */
.privacidad-container {
  max-width: 700px;
  margin: 2rem auto;
  padding: 20px;
  background: #fff;
  color: #222;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.privacidad-container h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0a3a5a;
  margin-bottom: 1.2rem;
  text-align: center;
}

.privacidad-container h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1769aa;
  margin: 2rem 0 .7rem;
}

.privacidad-container ul {
  margin: 0 0 1.2rem 1.2rem;
}

.privacidad-container li {
  margin-bottom: .5rem;
}

.privacidad-container a {
  color: #1769aa;
  text-decoration: underline;
}

.privacidad-container p {
  margin-bottom: 1.1rem;
  line-height: 1.7;
  text-align: justify;
}

.privacidad-container .actualizacion {
  color: #888;
  font-size: .95rem;
  margin-top: 2rem;
}

/* ========== FOOTER ========== */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  padding: 40px 20px;
  margin-top: 20px;
  background: rgb(1, 1, 30);
  color: #fff;
}

.footer > div {
  flex: 1;
  min-width: 200px;
}

.footer img {
  width: 90px;
  margin-bottom: 15px;
}

.footer h5 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid #444;
}

.footer p {
  font-size: .9rem;
  color: #ccc;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 10px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: color .3s ease;
}

.footer a:hover {
  color: orange;
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0,0,0,.2);
  transition: transform .3s ease;
  z-index: 1000;
}

.whatsapp-button img {
  width: 35px;
  height: 35px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-content h1 {
    margin-top: 130px;
    font-size: 35px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer > div {
    width: 80%;
    margin-bottom: 32px;
  }

  .footer > div:last-child {
    margin-bottom: 0;
  }

  .privacidad-container {
    margin: 1rem;
    padding: 1rem;
  }
}
