/* ===== GENERAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  color: #000000;
  padding: 2px 30px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-item {
  text-decoration: none;
  color: #1e3869;
  font-weight: bold;
  padding: 8px 15px;
  transition: 0.3s;
}

.nav-item:hover {
  background-color: #9e303a;
  color: #ffffff;
  border-radius: 5px;
  padding: 20px 30px;
}

/* ===== BURGER MENU ===== */
.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #9e303a;
}

/* ===== HERO SECTION ===== */
.hero {
  background-image: url("images/banner.jpg");
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* 👈 Esto empuja el contenido hacia la derecha */
  color: white;
}

.hero-content {
  max-width: 600px;
  margin-right: 7%; /* 👈 Ajustá la separación al borde derecho */
  text-align: left; /* 👈 Opcional: el texto también queda alineado a la derecha */
}

.hero h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1e3869;
  text-shadow: 2px 1px 1px rgba(255, 255, 255, 0.795);
}

.hero p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #1e3869;
  text-shadow: 2px 1px 1px rgba(255, 255, 255, 0.795);
}

.cta-btn {
  display: inline-block;
  background-color: #d41e2d;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 5px;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #ff3939;
  color: #ffffff;
  padding: 20px 30px;
}




/* ===== NEWSLETTER ===== */

.newsletter-signup {
  background-image: url("images/banner2.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.newsletter-signup .container {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-signup h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
}

.newsletter-signup p {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 25px;
}

.newsletter-signup .icon-newsletter img {
  width: 100px;
  height: auto;
  margin-bottom: 25px;
}

.newsletter-signup form .form-row {
  margin-bottom: 20px;
}

.newsletter-signup input[type="text"],
.newsletter-signup input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #000000;
  background-color: #ffffffe0;
  border-radius: 5px;
}

.newsletter-signup .gender label,
.newsletter-signup .consent label {
  font-size: 0.9rem;
  color: #ffffff;
  display: block;
  margin: 8px 0;
  text-align: left;
}

.newsletter-signup .gender input[type="checkbox"] {
  margin-right: 8px;
}

.newsletter-signup .consent input[type="checkbox"] {
  margin-right: 8px;
}

.newsletter-signup .btn-submit {
  background-color: #d41e2d;
  color: #ffffff;
  padding: 14px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-signup .btn-submit:hover {
  background-color: #ff3939;
  color: #ffffff;
  padding: 20px 30px;
}

@media (max-width: 768px) {
  .newsletter-signup {
    padding: 40px 15px;
  }
  .newsletter-signup h2 {
    font-size: 1.6rem;
  }
  .newsletter-signup p {
    font-size: 0.9rem;
  }
}





/* ===== CONTACT PAGE ===== */

.contact-page {
  background-image: url("images/banner2.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.contact-page .container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-page h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #ffffff;
}

.contact-form .form-row {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #000000;
  background-color: #ffffffe0;
  border-radius: 5px;
}

.contact-form .consent label {
  font-size: 0.9rem;
  color: #ffffff;
  display: block;
  text-align: left;
}

.contact-form .btn-submit {
  background-color: #d41e2d;
  color: #ffffff;
  padding: 14px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form .btn-submit:hover {
  background-color: #ff3939;
  color: #ffffff;
  padding: 20px 30px;
}

@media (max-width: 768px) {
  .contact-page {
    padding: 40px 15px;
  }
  .contact-page h2 {
    font-size: 1.6rem;
  }
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form textarea {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
  .contact-form .btn-submit {
    font-size: 1rem;
    padding: 12px 20px;
  }
}


/* ===== UNSUBSCRIBE PAGE ===== */
.unsubscribe-page {
  background-image: url("images/banner2.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.unsubscribe-page .container {
  max-width: 500px;
  margin: 0 auto;
}

.unsubscribe-page h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #ffffff;
}

.unsubscribe-form .form-row {
  margin-bottom: 20px;
  text-align: left;
}

.unsubscribe-form input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #000000;
  background-color: #ffffffe0;
  border-radius: 5px;
}

.unsubscribe-form .consent label {
  font-size: 0.9rem;
  color: #ffffff;
  display: block;
  text-align: left;
}

.unsubscribe-form .btn-submit {
  background-color: #d41e2d;
  color: #ffffff;
  padding: 14px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.unsubscribe-form .btn-submit:hover {
  background-color: #ff3939;
  color: #ffffff;
  padding: 20px 30px;
}

@media (max-width: 768px) {
  .unsubscribe-page {
    padding: 40px 15px;
  }
  .unsubscribe-page h2 {
    font-size: 1.6rem;
  }
  .unsubscribe-form input[type="email"] {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
  .unsubscribe-form .btn-submit {
    font-size: 1rem;
    padding: 12px 20px;
  }
}




/* ===== PRIVACY PAGE ===== */
.policy-page {
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  background-color: #1c2129;
}

.policy-page .container {
  max-width: 800px;
  margin: 0 auto;
}

.policy-page h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
}

.policy-page p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b3b3b3;
  margin-bottom: 20px;
}

.policy-page ul {
  margin: 20px 0;
  padding-left: 20px;
  color: #ffffff;
}

.policy-page ul li {
  margin-bottom: 10px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .policy-page {
    padding: 40px 15px;
  }
  .policy-page h2 {
    font-size: 1.6rem;
  }
  .policy-page p {
    font-size: 0.9rem;
  }
}




/* ===== COOKIE PAGE ===== */
.cookie-policy-page {
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  background-color: #1c2129;
}

.cookie-policy-page .container {
  max-width: 800px;
  margin: 0 auto;
}

.cookie-policy-page h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
}

.cookie-policy-page h2 {
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #ffffff;
}

.cookie-policy-page h3 {
  font-size: 1.5rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #ffffff;
}

.cookie-policy-page p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ffffff;
}

.cookie-table-wrapper {
  overflow-x: auto;
  margin-bottom: 20px;
  color: #ffffff;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
  border: 1px solid #d41e2d;
  padding: 10px;
  text-align: left;
}

.cookie-table th {
  background-color: #d41e2d;
}

@media (max-width: 768px) {
  .cookie-policy-page {
    padding: 40px 15px;
  }
  .cookie-policy-page h2 {
    font-size: 1.6rem;
  }
  .cookie-policy-page p {
    font-size: 0.9rem;
  }
  .cookie-table th,
  .cookie-table td {
    padding: 8px;
    font-size: 0.9rem;
  }
}



/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
  }

  .hero {
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }

  .hero-content {
    margin: 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}



/* ===== FOOTER ===== */

.site-footer {
  background-color: #000000; /* fondo negro */
  color: #ffffff;         /* letras color amarillo */
  padding: 30px 20px;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left, .footer-right {
  flex: 1;
}

.footer-logo {
  max-width: 100px;
  width: 50%;
  height: auto;
  margin-bottom: 15px;
}

.footer-address {
  line-height: 1.4;
  margin-bottom: 10px;
}

.footer-email {
  color: #d41e2d;
  text-decoration: none;
  font-weight: bold;
}

.footer-email:hover {
  text-decoration: underline;
}

.footer-sitemap {
  display: flex;
  flex-direction: column;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #d41e2d;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #ffffff; /* un poco más claro para contraste */
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-left, .footer-right {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer-sitemap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .footer-link {
    margin-bottom: 0;
  }
}
