/* Reset básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: sans-serif;
    line-height: 1.6;
    background-color: #141414; /* Fondo general oscuro */
    color: #fff;
  }
  
  /* HEADER */
  .site-header {
    background-color: #141414;
    padding: 10px 20px;
  }
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Estilos responsivos para pantallas pequeñas */
  @media (max-width: 600px) {
    .header-container {
      justify-content: flex-start;
      gap: 40px; /* Espacio entre logo e icono/texto */
    }
  
    .logo img {
      height: 36px;
    }
  
    .call-button {
      margin-left: -5px;
    }
  
    .call-button img {
      height: 48px;
      width: 48px;
    }
  
    .call-button .call-text {
      font-size: 1rem;
    }
  }  
  
  /* BANNER */
  .banner {
    background-color: #141414;
    padding: 2rem;
    display: flex;
    justify-content: center;
  }
  
  .banner-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
  }
  
  .banner-text {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;   /* Centrado vertical */
    align-items: center;       /* Centrado horizontal */
    text-align: center;
    padding: 2rem;
    min-height: 80vh;
  }
  
  .banner-text h1 {
    font-size: 2rem;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1rem;
  }
  
  .banner-text p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 500px;
  }
  
  .lead-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
  }
  
  .lead-form input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    color: #000 !important;
    background-color: #fff !important;
  }
  
  .lead-form button {
    background-color: #ca0505;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .lead-form button:hover {
    background-color: #a10404;
  }
  
  .lead-form small {
    font-size: 0.75rem;
    color: #888;
  }  
  
  .banner-image {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }
  
  .banner-image img {
    max-width: 100%;
    height: auto;
  }
  
  
  /* BENEFICIOS */
  .benefits {
    background-color: #141414;
    padding: 60px 20px 100px; /* aumentamos padding inferior para separar de la siguiente sección */
    text-align: center;
  }
  
  .benefits-title {
    color: #a10404;
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 80px;
  }
  
  .benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 0;
    list-style: none;
    margin: 0;
  }
  
  .benefits-list li {
    background-color: transparent;
    color: white;
    max-width: 250px;
    text-align: center;
  }
  
  .benefit-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
  }
  
  .benefit-tag {
    display: inline-block;
    background-color: #ca0505;
    color: white;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 0.9rem;
  }
  
  .benefits-list h3 {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  
  /* FAQ */
  .faq {
    background-color: #141414;
    padding: 60px 20px;
    margin-top: 60px; /* este margen superior genera más espacio respecto a la sección anterior */
  }
  
  .faq h2 {
    color: #a10404;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
  }
  
  .faq-answer {
    display: none;
    background-color: #222121;
    margin-top: 10px;
    margin-bottom: 30px;
    margin-left: 20px;
    color: #faf9f9;
    line-height: 1.4;
    transition: max-height 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  
  .faq-question {
    width: 100%;
    text-align: left;
    background-color: #141414;
    color: rgb(249, 247, 214);
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }
  
  .faq-question:hover {
    background-color: #a00404;
  }
    
  /* CTA FINAL */
  
  .cta {
    padding: 3rem 2rem;
    background-color: #1a1a1a;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .cta h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
    max-width: 600px;
  }
  
  .lead-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
  }
  
  .lead-form input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    color: #000 !important;
    background-color: #fff !important;
  }
  
  .lead-form input::placeholder {
    color: #aaa;
  }
  
  .lead-form button {
    background-color: #ca0505;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .lead-form button:hover {
    background-color: #a10404;
  }
  
  .lead-form small {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    max-width: 300px;
  }  
  
  .footer {
    background-color: #0e0e0e;
    padding: 30px 20px;
    text-align: center;
  }
  
  .footer-content p {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 120px;
  }
    

  