

  header.brands {
    display: flex;
    justify-content: space-around;
    padding: 10px 20px;
    background-color: #ffffff;
  }
  .contenedor_pie_pagina .contenedor_redes_sociales {
      color: #ffa03d;
      font-size: 25px;
  }

  .contenedor_pie_pagina .contenedor_redes_sociales a:hover {
      color: #009eff;
  }
  .color-letra {
    color: #ffffff;
  }

  header.brands img {
    max-height: 50px;
  }

  .services {
    display: flex;
    justify-content: space-around;
    background-color: #ffffff;
    padding: 20px;
  }

  .service {
    text-align: center;
  }

  .newsletter {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
  }

  .newsletter form {
    margin-top: 10px;
  }

  .newsletter input {
    padding: 10px;
    width: 200px;
    margin-right: 10px;
    border: 1px solid #ccc;
  }

  .newsletter button {
    padding: 10px 20px;
    background-color: #919191;
    color: #fff;
    border: none;
    font-weight: bold;
  }



  .footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .footer-top img {
    max-height: 50px;
  }

  .footer-top .links {
    list-style: none;
  }

  .footer-top .links ul {
    padding: 0;
  }

  .footer-top .links ul li {
    margin: 5px 0;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    font-size: 12px;
  }

  .social a {
    margin: 0 10px;
    font-size: 35px;
    text-decoration: none;
  }

  .socialf {
    color:rgb(255, 255, 255);
  }

      .whatsapp-container {
        position: relative;
      }

      /* Estilo del botón de WhatsApp */
      .whatsapp-btn {
        background-color: #25d366;
        color: #fff;
        padding: 15px;
        border-radius: 50%;
        box-shadow: 0 1px 15px rgba(32, 33, 36, .28);
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 25px;
        right: 30px;
        z-index: 99;
        transition: all 0.3s ease-in-out;
      }

      /* Efecto hover en el botón de WhatsApp */
      .whatsapp-btn:hover {
        background-color: #128c7e;
        transform: scale(1.1);
      }

      /* Estilo de los vendedores, inicialmente ocultos */
      .vendedores {
        display: none;
        position: absolute;
        bottom: 80px;
        right: 0;
        z-index: 98;
        flex-direction: column;
      }

      /* Estilo de cada vendedor */
      .vendedor {
        background-color: #25d366;
        color: #fff;
        padding: 10px;
        margin: 5px 0;
        border-radius: 10px;
        text-decoration: none;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease-in-out;
      }

      .vendedor i {
        margin-right: 10px;
      }

      /* Efecto hover sobre los vendedores */
      .vendedor:hover {
        background-color: #128c7e;
        transform: scale(1.05);
      }

  .socialy{
    background-color: #fd1d1d;
  }

  .socialt{
    background-color: black;
  }


  .social a:hover {
      color: #838383;
  }

  /* Estilos generales del botón WhatsApp */
  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: breathe 2s ease-in-out infinite;
  }
/* Pantallas medianas (tablets) */
@media screen and (max-width: 768px) {
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-btn i {
    font-size: 20px;
  }
}

/* Pantallas pequeñas (móviles) */
@media screen and (max-width: 480px) {
  .whatsapp-btn {
    width: 45px;
    height: 45px;
    bottom: 10px;
    right: 10px;
  }

  .whatsapp-btn i {
    font-size: 18px;
  }
}
  /* Estilos solo al icono WhatsApp */
  .whatsapp-btn i {
    color: #fff;
    font-size: 24px;
    animation: beat 2s ease-in-out infinite;
    text-decoration: none;
  }
/* _ Estilo general _ */
.elegirnos {
  background: rgb(0, 0, 0);
    color: #fff; /* Texto blanco */
    padding: 40px 20px;
    text-align: center;
  }

  .elegirnos-container {
    max-width: 1200px;
    margin: auto;
  }

  .elegirnos h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }

    .porque_elegirnos_fondo {
        background-color: #f4f4f4; /* Color de fondo */
        background-image: url('../../imagen/home-about.png'); /* Imagen de fondo */
        background-size: cover; /* Para que la imagen cubra toda el área */
        background-position: center; /* Para centrar la imagen */
        padding: 20px; /* Espaciado interno */
      }


  /* _ Sección de beneficios _ */
  .elegirnos-benefits {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Permitir que los elementos se ajusten */
  }

  .benefit {
    flex: 1 1 30%; /* Tres elementos en fila */
    text-align: center;
  }

  .benefit img {
    width: 60px; /* Tamaño de los íconos */
    height: auto;
    margin-bottom: 10px;
  }

  .benefit h3 {
    color: #e74c3c; /* Color rojo */
    font-size: 18px;
    margin: 10px 0;
  }

  .benefit p {
    font-size: 14px;
    color: #bbb; /* Texto gris claro */
  }

 

  /* _ Media queries para responsive _ */
  @media screen and (max-width: 768px) {
    .elegirnos-benefits {
      flex-direction: column; /* Cambiar a columna */
      align-items: center;
    }

    .benefit {
      flex: 1 1 100%; /* Ocupa todo el ancho */
      margin-bottom: 20px;
    }

    .whatsapp-btn {
   
    }
  }

  /* Animación del contorno respirando */


  /* Media Queries para hacer el diseño responsive */
  @media screen and (max-width: 768px) {
    footer {
      padding: 40px 10px;
    }

    .footer-top {
      flex-direction: column;
      text-align: center;
    }

    .footer-top .links {
      margin-bottom: 20px;
    }

    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }

    .social a {
      margin: 5px 0;
    }

    .payment-icons {
      justify-content: center;
    }

    .newsletter input {
      width: 80%;
    }

    .newsletter button {
      width: 80%;
    }
  }
