 .container {
    max-width:1200px;
    margin:0 auto;
    padding:0 1rem;
    width:100%;
  }


     .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 2rem;
      background: #fff;
      border-bottom: 1px solid var(--gray-200);
      flex-wrap: wrap;
      gap: 1rem;
    }
    
    .logo-section {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .logo-img {
      height: 100px; /* Aumentado el tamaño */
      width: 100px;
      object-fit: cover;
      border-radius: 50%; /* Circular */
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
      transition: transform 0.4s ease, filter 0.3s ease;
    }
    
    .logo-img:hover {
      transform: scale(1.15);
      filter: brightness(1.2);
    }
    
    .titulo-efecto {
      font-family: 'Montserrat', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      text-transform: uppercase;
      position: relative;
      margin: 0;
    }
    
    .titulo-efecto::after {
      content: "";
      position: absolute;
      bottom: -6px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 4px;
      background: var(--primary);
      transition: width 0.4s ease;
    }
    
    .titulo-efecto:hover::after {
      width: 60%;
    }
.btn-download {
  background-color: #0b4ea2; /* azul fuerte */
  color: #ffffff;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(11, 78, 162, 0.35);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-download:hover {
  background-color: #083b7a;
  transform: translateY(-2px);
}

  
  .badge {
    display:inline-block;
    background:#fff; color:var(--primary);
    padding:.2rem .6rem;
    border-radius:9999px;
    font-size:.75rem; font-weight:600;
    margin-bottom:1rem;
  }
    .main-nav ul {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    
    .main-nav a {
      text-decoration: none;
      font-weight: 600;
      font-size: 17px;
      color: var(--text-color);
      transition: color 0.3s;
    }
    
    .main-nav a:hover {
      color: blue;
    }
     h1, h2, h3, h4 { margin-bottom:.5rem; line-height:1.2; font-weight:700; }
  h1 { font-size:3rem; }
  h2 { font-size:2rem; }
  h3 { font-size:1.5rem; }
  p { margin-bottom:1rem; color:var(--gray-600);
 }

  .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.8rem;
      cursor: pointer;
    }
     @media (max-width: 768px) {
      .header {
        flex-direction: column;
        align-items: flex-start;
      }
    
      .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
      }
    
      .menu-actions {
        width: 100%;
        justify-content: space-between;
        margin-top: 1rem;
      }
    
      .mobile-menu-btn {
        display: block;
      }
    }
  .documento {
    max-width: 900px;
    background: white;
    margin: 30px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.documento section {
    margin-bottom: 30px;
}

.documento h2 {
    color: #0056b3;
    margin-bottom: 15px;
}

.documento p {
    line-height: 1.7;
}

.documento ul {
    margin-top: 10px;
    padding-left: 20px;
}

.documento ul li {
    margin-bottom: 8px;
}

.highlight {
    background: #e6f0ff;
    padding: 12px;
    border-left: 4px solid #0056b3;
    margin: 20px 0;
}

.image-inline {
    width: 100%;
    max-width: 800px;
    height: 450px;
    object-fit: cover;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}

.caption {
    text-align: center;
    font-style: italic;
    font-size: 14px;
    color: #666;
}


.help-section {
  margin-top: 60px;
  padding: 40px 30px;
  background: linear-gradient(135deg, #f0f6ff, #e3edff);
  border-radius: 14px;
}

.help-section h2 {
  color: #0b4ea2;
  margin-bottom: 10px;
}

.help-section p {
  color: #374151;
}

/* CARDS */

.help-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.help-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.help-card:hover {
  transform: translateY(-6px);
}

.help-card h3 {
  color: #0b4ea2;
  margin-bottom: 6px;
}

.help-card p {
  font-size: 0.9rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .downloads-layout {
    flex-direction: column;
    align-items: center;
  }
.downloads-info,
  .phone-preview {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .section-header p {
    max-width: 100%;
    padding: 0 1rem;
    text-align: center;
    left: auto;
    position: static;
  }

  .download-buttons {
    justify-content: center;
  }

  .tab-headers {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 300px;
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .help-cards {
    flex-direction: column;
    align-items: stretch;
  }

  .help-card {
    width: 100%;
    max-width: none;
  }

  .phone-frame {
    width: 220px;
  }
}
.footer {
  background: linear-gradient(145deg, #f3f4f6, #e4e7eb); /* Fondo degradado suave */
  padding: 2rem 0;
  border-top: 2px solid var(--gray-200);
  color: #333;
}

/* Contenido del footer */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-images {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-img {
  width: 170px; 
  height: auto;
  transition: transform 0.3s ease;
}


/* Efecto hover en los logos */
.footer-img:hover {
  transform: scale(1.1); /* Aumento suave en el tamaño */
}

/* Información de la empresa */
.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #4a4a4a;
}

.footer-logo i {
  margin-right: 0.5rem;
  font-size: 1.5rem; /* Tamaño del ícono */
  color: var(--primary); /* Puedes cambiar el color según tu paleta */
}

.footer-logo p {
  margin: 0;
  font-size: 1rem;
  margin-left: 7rem;
  color: var(--gray-500);
}

/* Navegación del footer */
.footer-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav a {
  font-size: 1rem;
  color: var(--gray-500);
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

/* Hover en los enlaces */
.footer-nav a:hover {
  text-decoration: none;
  color: var(--primary);
}


/* Ajustar el footer para móviles */
@media (max-width: 768px) {
  .footer-content {
    text-align: center;  /* Centra todo el contenido del footer */
    padding: 2rem 1rem;
  }

  .footer-images {
    display: flex;
    flex-direction: column;  /* Coloca las imágenes una debajo de la otra */
    align-items: center;  /* Centra las imágenes */
    gap: 1rem;  /* Añade un espacio entre las imágenes */
  }

  .footer-nav ul {
    display: flex;
    justify-content: center;  /* Centra los enlaces del footer */
    gap: 1.5rem;  /* Espaciado entre los enlaces */
    padding: 0;
  }

  .footer-nav ul li a {
    font-size: 1rem;  /* Ajusta el tamaño de la fuente para pantallas pequeñas */
  }
}