/* Reset y configuración básica */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    /* Fondo general con gradiente sutil de izquierda a derecha */
    background: linear-gradient(to right, #072241 0%, #0b4272 100%);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* Encabezado */
  header {
    /* Un color sólido ligeramente más oscuro que el gradiente de fondo */
    background-color: #072241;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    /* Para resaltar un poco la marca en el header */
    color: #ffffff;
    padding: 5px 100px;
    height: auto;
  }

  nav {
    display: flex;
    align-items: center;
    padding-right: 0px;
    padding-right: 70px;
  }

  nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  nav a:hover {
    color: #f4a000;
  }

  .btn-cotiza {
    background: #f4a000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .btn-cotiza:hover {
    background: #d18e00;
  }

  /* Sección Hero */
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Separación vertical amplia para que luzca la imagen y el texto */
    padding: 150px 125px;
    /* Opcional: un fondo con degradado distinto al body para resaltar la sección
       Si prefieres mantenerlo transparente, puedes comentar esta línea. */
    background: linear-gradient(to right, rgba(7,34,65,0.7), rgba(11,66,114,0.7));
  }

  /* Texto dentro del hero */
  .hero-text {
    flex: 1;
    max-width: 600px; /* Limita el ancho del texto para mejor legibilidad */
    margin-left: 100px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
  }

  .hero-text h1 span.protege {
    color: #52b3d9; /* Resalta la palabra "Protege" en naranja */
    letter-spacing: 0;
  }

  .hero-text h1 span.tucarga {
    color: #ffffff; /* Mantiene "TuCarga" en blanco */
  }

  .hero-text h1 span.com {
    color: #f4a000; /* .com en naranja de nuevo para consistencia */
  }

  .hero-text p {
    font-size: 1.6rem;
    margin-bottom: 30px;
    line-height: 1;
  }

  /* Botón principal en el hero */
  .btn-main {
    display: inline-block;
    background: #f4a000;
    color: #60471b;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
    transition: background 0.3s ease;
    text-align: center;
  }

  .btn-main:hover {
    background: #d18e00;
  }

  .btn-group {
    display: flex;       /* Pone los botones en la misma fila */
    gap: 10px;           /* Espacio entre botones (opcional) */
    width: 100%;         /* El contenedor ocupa todo el ancho */
    margin-top: 25px;    /* Separación vertical */
  }

  .btn-group a {
    flex: 1;             /* Cada enlace ocupa el mismo espacio (mitad) */
    /* width: 50%;       Si prefieres usar width fija en vez de flex */
    background: #007cf5;
    color: #fff;
    padding: 15px 20px;  /* Aumenta el grosor visual */
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.1rem;   /* Tamaño de fuente un poco mayor */
    font-weight: 700;    /* Negrita para que se vea más “grueso” */
    text-align: center;
    transition: background 0.3s ease;
  }

  .btn-group a:hover {
    background: #0055aa;
  }


  /* Imagen del hero */
  .hero-image {
    flex: 1;
    text-align: center;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
    position: absolute;
    width: 40%;
    margin-top: -15%;
    margin-left: -160px;
  }

  /* Responsividad */
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align    : center;
    }

    .hero-text {
      padding      : 0;
      max-width    : 100%;
      margin-bottom: 30px;
    }

    .btn-group a {
      margin-bottom: 10px;
      margin-right : 0;
    }
  }

  * {
    margin    : 0;
    padding   : 0;
    box-sizing: border-box;
  }

  .container {
    max-width: 1200px;
    margin   : 0 auto;
  }
  h1 {
    font-size    : 45px;
    font-weight  : bold;
    margin-bottom: 80px;

  }
  h1 .color-primary {
    color: #f4a000;
  }
  h1 .color-secondary {
    color: #52b3d9;
  }
  .steps {
    display        : flex;
    justify-content: center;
    gap            : 40px;
    margin-top     : 40px;
  }
  .sub-title{
    margin         : 50px 0px 0px 0px;
    font-size      : 25px;
    justify-content: center;
    display        : flex;
  }
  .step {
    background   : #103a5b;
    color        : #000;
    padding      : 0px 10px 20px 10px;
    width        : 250px;
    border-radius: 40px;
    box-shadow   : 0 0 10px rgba(0, 0, 0, 0.2);
    text-align   : left;
    position     : relative;
    border       : 3px dashed #ccc;
  }

  .step-enter{
    margin-top   : -10px;
    background   : #fff;
    width        : 100%;
    height       : 100%;
    border-radius: 40px;
    margin-bottom: 10px;
  }

  .step-beneficiary {
    background   : #103a5b;
    color        : #000;
    padding      : 0px 10px 20px 10px;
    width        : 250px;
    border-radius: 150px;
    box-shadow   : 0 0 10px rgba(0, 0, 0, 0.2);
    text-align   : left;
    position     : relative;
    border       : 3px dashed #ccc;
  }

  .step-enter-beneficiary {
    margin-top     : 10px;
    background     : #fff;
    width          : 100%;
    height         : 100%;
    border-radius  : 150px;
    margin-bottom  : 10px;
    display        : flex;
    justify-items  : center;
    justify-content: center;
    align-items    : center;
  }

  .text-card-beneficiary {
    padding: 5px 0px 5px 0px;
    font-size: 18px;
    text-align: center;
    margin: 20px 10px 20px 10px
  }

  .step::before {
    content        : attr(data-number);
    position       : absolute;
    top            : -30px;
    left           : -18px;
    background     : #f4a000;
    color          : #fff;
    font-size      : 50px;
    font-weight    : bold;
    width          : 70px;
    height         : 70px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    border-radius  : 50%;
  }
  .step h2 {
    font-size    : 1.5rem;
    margin-top   : 20px;
    margin-bottom: 20px;
    text-align   : center;
    padding      : 25px 5px 0px 5px;
  }
  .step:nth-child(1)::before {
    background: #52b3d9;
  }
  .step:nth-child(2)::before {
    background: #3a70c4;
  }
  .step:nth-child(3)::before {
    background: #4e7c9e;
  }
  .step:nth-child(4)::before {
    background: #f4a000;
  }
  .title-first {
    color: #52b3d9;
  }
  .title-second {
    color: #3a70c4;
  }
  .title-third {
    color: #4e7c9e;
  }
  .title-fourth {
    color: #f4a000;
  }
  .text-card{
  padding   : 0px 15px 0px 15px;
  font-size : 18px;
  text-align: center;
  }
  .button-final{
    display        : flex;
    justify-content: end;
    margin-right: 20%;
  }
  .cta {
    margin-top: 30px;
    background: #f4a000;
    padding: 11px 30px;
    font-size: 15px;
    color: #000;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    align-content: end;
  }
  .cta:hover {
    background: #d18e00;
  }

  .gps-section {

    color: #fff;
    padding: 100px 0px;
  }

  .gps-section h1 {
    text-align: center;
  }

      /* FOOTER */
      footer {
        background-color: #0A0C24;  /* Color de fondo del footer, ajústalo según tu imagen */
        color: #fff;
        padding: 20px 0;
      }

      .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* FOOTER TOP */
      .footer-top {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
      }

      .footer-top h3 {
        font-size: 1.2rem;
        text-align: center;
      }

      /* Botón verde (ícono) en la esquina superior derecha */
      .green-button {
        position: absolute;
        right: 0;
        width: 40px;
        height: 40px;
        background-color: #00C900;  /* Ajusta el color */
        border-radius: 4px;
        background-image: url('icono-blanco.png');  /* Reemplaza por la ruta de tu ícono */
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
      }

      /* SLIDER DE REDES SOCIALES */
      .footer-slider {
        overflow: hidden;
        margin-bottom: 20px;
      }

      .slider {
        width: calc(200px * 6);
        overflow: hidden;
        margin: 0 auto; /* Centra la pista si el contenedor padre es más ancho */
      }

      .slide-track {
        display: flex;
        /* Ancho total para 6 slides */
        width: calc(200px * 6);
        animation: scroll 20s linear infinite;
      }

      .slide {
        flex: 0 0 auto;
        width: 200px; /* Ajusta el tamaño de cada slide según tus necesidades */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
      }

      .slide img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      .slide i {
        color: #fff;
        font-size: 2rem; /* Ajusta el tamaño a tu gusto */
      }

      @keyframes scroll {
        0% {
          transform: translateX(0);
        }
        100% {
          /* Desplaza la mitad (los 3 slides originales) para un scroll continuo */
          transform: translateX(calc(-200px * 3));
        }
      }


      /* FOOTER BOTTOM */
      .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
      }

      .footer-bottom-left,
      .footer-bottom-right {
        flex: 1;
        min-width: 250px;
        margin-bottom: 20px;
      }

      .footer-bottom-right {
        text-align: right;
      }

      .footer-bottom-left p,
      .footer-bottom-right p {
        margin-bottom: 6px;
        font-size: 0.9rem;
      }

      @media (max-width: 600px) {
        .footer-bottom {
          flex-direction: column;
        }
        .footer-bottom-left,
        .footer-bottom-right {
          text-align: left;
        }
      }

      .whatsapp-float {
        position: fixed;
        text-decoration: none;
        bottom: 20px;
        right: 20px;
        background-color: #25d366;
        color: #fff;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
      }

      .whatsapp-float:hover {
        transform: scale(1.1);
      }



