* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 18px;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0b1526;
  color: #ffffff;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.site-header {
  background-color: #183b52;
  padding: 20px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  color: #ffffff;
  text-decoration: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.main-nav ul li a:hover {
  color: #4fa8ff;
}

.lang-flag img {
  width: 36px;
  cursor: pointer;
}

/* HERO */
.hero-section {
  position: relative;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  height: calc(100vh - 80px);
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-primary {
  background-color: #368fff;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: #2a73c2;
}

/* IMAGEN PRINCIPAL */
.image-section {
  background-color: #0b1526;
  padding: 80px 0;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* BLOQUE 1: CONTENIDO */
.content-section {
  background-color: #101a38;
  padding: 80px 0;
}

.content-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-list {
  counter-reset: item;
  list-style: none;
  margin: 0 0 50px 0;
  padding: 0;
}

.content-list li {
  position: relative;
  padding-left: 60px;
  margin-bottom: 20px;
  font-size: 1.15rem;
  color: #d0d8e0;
  line-height: 1.6;
}

.content-list li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #4fa8ff;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.content-list li:hover {
  color: #ffffff;
}

.content-list li:hover::before {
  background-color: #2a73c2;
}

.content-section p {
  font-size: 1.05rem;
  color: #b8c2cd;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* BLOQUE 2: QUÉ HACE A CHILBETTS DIFERENTE */
.features-section {
  background-color: #0b1526;
  padding: 80px 0 100px;
}

.features-section .btn-center {
  display: inline-block;
  background-color: #368fff;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1.1rem;
  text-decoration: none;
  margin: 0 auto 50px;
  transition: background-color 0.2s ease;
}

.features-section .btn-center:hover {
  background-color: #2a73c2;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.features-image {
  flex: 1 1 300px;
  max-width: 380px;
}

.features-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.features-content {
  flex: 2 1 500px;
}

.features-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 24px;
}

.features-content p {
  font-size: 1.05rem;
  color: #cfd8e4;
  line-height: 1.7;
  margin-bottom: 20px;
}

.features-list {
  margin-left: 20px;
  padding-left: 0;
  list-style: none;
  margin-bottom: 40px;
}

.features-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: #d0d8e0;
  line-height: 1.6;
}

.features-list li::before {
  content: "✔︎";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  color: #4fa8ff;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .features-container {
    flex-direction: column;
    gap: 30px;
  }

  .features-image,
  .features-content {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .features-section .btn-center {
    margin-bottom: 40px;
  }
}
.logo img {
  width: 150px;
}
/* BLOQUE 3: CARACTERÍSTICAS DESTACADAS Y TARJETAS */
.features2-section {
  background-color: #0d1a32;
  padding: 20px 0 0px;
}

.features2-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.features2-section p {
  font-size: 1.05rem;
  color: #cfd8e4;
  line-height: 1.7;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.feature-image-left {
  flex: 0 0 220px;
  position: relative;
}

.feature-image-left img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.feature-image-left span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 4px;
}

.feature-text-right {
  flex: 1 1 auto;
}

.feature-text-right p {
  font-size: 1.05rem;
  color: #d0d8e0;
  line-height: 1.7;
}

.feature-banner {
  width: 100%;
  margin-bottom: 50px;
}

.feature-banner img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.card {
  background-color: #142444;
  border-radius: 8px;
  flex: 1 1 calc(33% - 16px);
  max-width: calc(33% - 16px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 12px;
  text-align: center;
}

.card p {
  font-size: 1rem;
  color: #cfd8e4;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-btn {
  background-color: #368fff;
  color: #ffffff;
  padding: 10px 24px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.card-btn:hover {
  background-color: #2a73c2;
}

.promo-input-wrapper {
  display: flex;
  width: 100%;
  gap: 8px;
}

.promo-input-wrapper input {
  flex: 1 1 auto;
  padding: 8px 12px;
  border-radius: 4px;
  border: none;
  font-size: 1rem;
  background-color: #1f283e;
  color: #ffffff;
}

.promo-input-wrapper input::placeholder {
  color: #90a0b7;
}

.promo-input-wrapper button {
  background-color: #368fff;
  color: #ffffff;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.promo-input-wrapper button:hover {
  background-color: #2a73c2;
}

@media (max-width: 900px) {
  .feature-item {
    flex-direction: column;
    gap: 24px;
  }

  .feature-image-left,
  .feature-text-right {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .feature-cards {
    flex-direction: column;
  }

  .card {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

/* BLOQUE 4: BONOS */
.bonos-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.bonos-table th,
.bonos-table td {
  border: 1px solid #2a3b5a;
  padding: 12px 16px;
  text-align: left;
  font-size: 1rem;
  color: #d0d8e0;
}

.bonos-table thead th {
  background-color: #142444;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}

.bonos-table tbody tr:nth-child(even) {
  background-color: #0d1a32;
}

.bonos-table tbody tr:hover {
  background-color: #1f283e;
  color: #ffffff;
}

/* BLOQUE 5: REQUISITOS DE RETIRO (usa content-list) */

/* BLOQUE 6: FAQ */
.faq-item {
  margin-bottom: 30px;
}

.faq-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 1.05rem;
  color: #cfd8e4;
  line-height: 1.7;
}

/* AJUSTES RESPONSIVOS GENERALES */
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  .content-section h2,
  .features-section h2,
  .features2-section h2 {
    font-size: 2.2rem;
  }

  .content-list li,
  .features-list li,
  .feature-text-right p,
  .features-content p {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-center,
  .card-btn {
    padding: 12px 28px;
    font-size: 1rem;
  }

  .feature-image-left,
  .features-image {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .feature-item,
  .features-container,
  .feature-cards,
  .features-container {
    flex-direction: column;
    gap: 24px;
  }
}
.site-header {
      background-color: #183b52;
      padding: 16px 0;
      position: relative;
    }
    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      font-family: 'Poppins', sans-serif;
      font-size: 1.8rem;
      color: #ffffff;
      text-decoration: none;
      margin-left: 16px;
    }
    .menu-toggle {
      width: 28px;
      height: 28px;
      position: relative;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      margin-right: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1999;
    }
    .menu-toggle .bar {
      position: absolute;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: #ffffff;
      transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
    }
    .menu-toggle .bar:nth-child(1) {
      top: 6px;
    }
    .menu-toggle .bar:nth-child(2) {
      top: 50%;
      transform: translateY(-50%);
    }
    .menu-toggle .bar:nth-child(3) {
      bottom: 6px;
    }
    .menu-toggle.open .bar:nth-child(1) {
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
    }
    .menu-toggle.open .bar:nth-child(2) {
      opacity: 0;
    }
    .menu-toggle.open .bar:nth-child(3) {
      top: 50%;
      transform: translateY(-50%) rotate(-45deg);
    }
    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 300px;
      height: 100%;
      background-color: #183b52;
      transition: right 0.3s ease;
      z-index: 1000;
      padding-top: 60px;
    }
    .main-nav.open {
      right: 0;
    }
    .main-nav ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding-left: 24px;
    }
    .main-nav ul li a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 1.1rem;
    }
    .main-nav ul li a:hover {
      color: #4fa8ff;
    }
    /* SITE FOOTER */
.site-footer {
  background-color: #2b3e50;      /* глубокий синий фон */
  color: #ffffff;                 /* белый текст */
  padding: 24px 0;                /* вертикальные отступы */
}

.footer-container {
  display: flex;
  justify-content: center;        /* выравнивание по центру */
}

.footer-nav {
  list-style: none;
  display: flex;
  gap: 24px;                      /* расстояние между ссылками */
  padding: 0;
  margin: 0;
}

.footer-nav li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease-in-out;
}

.footer-nav li a:hover {
  color: #4caf50;                 /* акцентный цвет при наведении */
}

/* Адаптив для мобильных */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
}
.cookie-policy-section, .terms-section, .privacy-policy-section {
  line-height: 1.4;
    padding: 20px 0px;
}