* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: #222;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  padding: 15px 60px;
  margin: 0 auto;
}

.header {
  border-bottom: 1px solid #e5e5e5;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
  /* Ajusta según tu diseño */
  width: auto;
  display: inline-block;
  vertical-align: middle;
}


main section {
  margin-bottom: 3rem;
  padding: 1rem 3rem;
}

main section ul li {
  padding: 10px;
}

.section_1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section_1 p {
  text-align: justify;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.benefit {
  background: #f8f9fb;
  padding: 1.75rem;
  border-radius: 14px;
}

.benefit p {
  line-height: 1.6;
}

.section-claim {
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 3.5rem;
}

#claim_1{
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .benefits {
    grid-template-columns: 1fr;
  }
}

.section_3 {
  margin-bottom: 0
}

.container-header {
  margin: 0 auto;
  padding: 1rem 3rem;
}

.catalog-section {
  display: flex;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 3rem auto;
}

.catalog-image {
  flex: 1;
}

.catalog-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.img-left {
  padding-right: 2rem;
}

.img-right {
  padding-left: 2rem;
}

.catalog-content {
  flex: 1;
}

.catalog-content h2 span {
  font-size: 1rem;
  font-weight: 400;
}

.catalog-content p {
  margin-bottom: 1.25rem;
}

.intro-link,
.catalog-link,
.last-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: #fff;
  background: #0B3C5D;
  padding: 15px 30px;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .catalog-section {
    flex-direction: column;
  }
}


.logo {
  font-weight: 700;
  font-size: 1.2rem;
}


.intro {
  background: url('/img/header.jpg') no-repeat center;
  background-size: cover;
  width: 100%;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  position: relative;
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.75));
  z-index: 0;
}

.intro-content {
  max-width: 800px;
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.intro-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.intro-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.intro-link {
  font-size: 1.1rem;
  font-weight: 400;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .intro {
    height: 45vh;
  }

  .intro-title {
    font-size: 1.7rem;
  }

  .intro-subtitle {
    font-size: 0.95rem;
  }
}


.nav {
  display: flex;
}


/* Menú base */
.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

/* Botón hamburguesa (oculto en desktop) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    width: 200px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.1);
  }

  .nav.open {
    display: block;
    z-index: 9999;
  }

  .nav ul {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .menu-toggle {
    display: block;
  }
}

/* Contenedor tipo documento */
.legal-page {
  max-width: 850px;
  margin: 0px auto;
  padding: 50px 60px;
  background-color: #fff;
  color: #111;
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.6;
}

/* Títulos */
.legal-page h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 15px;
}

.legal-page h3 {
  font-size: 1.1rem;
  margin-top: 25px;
  margin-bottom: 10px;
}

/* Texto */
.legal-page p {
  text-align: left;
  margin-bottom: 15px;
}

/* Listas */
.legal-page ul {
  margin: 15px 0 20px 25px;
}

.legal-page li {
  margin-bottom: 8px;
}

/* Enlaces */
.legal-page a {
  color: #003366;
  text-decoration: underline;
}

/* Separación visual */
.legal-page hr {
  margin: 40px 0;
}

.legal-header {
  width: 100%;
  padding: 20px 30px;
  border-bottom: 1px solid #e5e5e5;
  background-color: #fff;
}

.legal-logo img {
  height: 42px;
  display: block;
}

/* Centrado visual pero no forzado */
.legal-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Hover sutil */
.legal-logo:hover {
  opacity: 0.85;
}


/* Responsive */
@media (max-width: 768px) {
  .legal-page {
    padding: 30px 25px;
    margin: 30px 10px;
  }
}

.section-impar {
  background-color: #EAF2F8;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}


.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin: 2.5rem 0;
}

.audience-item {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #f8f9fb;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.audience-item svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}


.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin: 2rem 0;
}

.experience-item {
  display: flex;
  gap: 0.70rem;
  background: #f8f9fb;
  padding: 1.10rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}


.section-claim {
  font-weight: 600;
  margin-top: 1.5rem;
}

.final-cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.cta-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.cta-subtitle {
  margin-bottom: 1.25rem;
  color: #555;
}

@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
}

.contact-section {
  padding: 5rem 1.5rem;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 2rem !important;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-header {
  margin-bottom: 2.5rem;
}

.contact-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.contact-intro {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.contact-form-wrapper {
  background: #ffffff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 1.25rem;
  }

  .contact-header h2 {
    font-size: 1.6rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 15px 40px;
  }

  .img-left {
    padding-right: 0;
  }

  .img-right {
    padding-left: 0;
  }
}

.img-2{
  aspect-ratio: 1;
}
/********************************************************
*
* FOOTER
*
*********************************************************/
.footer {
  border-top: 1px solid #e5e5e5;
  padding: 2rem 0 1rem;
  font-size: 0.9rem;
  color: #fff;
  background: #2d3748;
}

.container-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-newsletter {
  flex: 1;
  text-align: left;
}

.footer-newsletter p {
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form input[type="email"] {
  padding: 0.5rem;
  font-size: 0.95rem;
  width: 320px;
  max-width: 90%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.newsletter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
}

.newsletter-checkbox a {
  text-decoration: underline;
}

.newsletter-form button {
  background-color: #1e40af;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.newsletter-form button:hover {
  background-color: #1e3a8a;
}

.newsletter-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.newsletter-label {
  font-size: 0.85rem;
  font-weight: 500;
}

.newsletter-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.newsletter-langs label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.newsletter-privacy {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.4rem;
}

.newsletter-privacy label {
  font-size: 0.75rem;
  line-height: 1.2;
}

.newsletter-privacy a {
  text-decoration: underline;
}

.footer-nav-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  row-gap: 1rem;
}

.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-end;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-nav-wrapper > div {
  display: flex;
  justify-content: flex-end;
  width: auto;
  gap: 1rem;
}

.footer-seo {
  max-width: 1200px;
  margin: 2rem auto 1.5rem;
  padding: 0 1rem;
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: center;
}

.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form input[type="email"] {
    width: 100%;
  }

  .footer-nav-wrapper {
    justify-content: flex-start;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}