
/* Fondo oscuro */
.custom-confirm-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.7);
   display: none;
   justify-content: center;
   align-items: center;
   z-index: 1000;
}

/* Contenedor del cuadro */
.custom-confirm {
   background:#051955;
   padding: 30px;
   border-radius: 12px;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
   text-align: center;
   width: 90%;
   max-width: 400px;
   animation: fadeIn 0.3s ease-out;
   color: white;
}

/* Animación */
@keyframes fadeIn {
   from {
       opacity: 0;
       transform: scale(0.9);
   }
   to {
       opacity: 1;
       transform: scale(1);
   }
}

.custom-confirm p {
   font-size: 1.4rem;
   margin-bottom: 20px;
   color: #f4f4f4;
   line-height: 1.5;
}

/* Botones */
.custom-confirm-buttons {
   display: flex;
   justify-content: space-between;
   gap: 15px;
}

.custom-confirm button {
   flex: 1;
   padding: 10px 15px;
   font-size: 1rem;
   border: none;
   border-radius: 8px;
   cursor: pointer;
   transition: all 0.3s ease;
}

.custom-confirm .confirm-yes {
   background-color: #92be3e;
   color: #1e4079;
   font-weight: bold;
}

.custom-confirm .confirm-yes:hover {
   background-color: #7aa732;
}

.custom-confirm .confirm-no {
   background-color: #ffffff;
   color: #1e4079;
   font-weight: bold;
}

.custom-confirm .confirm-no:hover {
   background-color: #dcdcdc;
}


    /* Media Queries para ajustes responsivos */
    @media (max-width: 768px) {
        .whatsapp-icon {
            width: 100px; /* Aumenta el tamaño en pantallas más pequeñas */
            height: 70px;
            top: 80vh; /* Ajusta la posición en pantallas más pequeñas */
            right: 4vw;
        }
       
    } @media (max-width: 1300px) {
        .whatsapp-icon {
            width: 90px; /* Aumenta el tamaño en pantallas más pequeñas */
            height: 70px;
            top: 80vh; /* Ajusta la posición en pantallas más pequeñas */
            right: 4vw;
        }
       
    }
    @keyframes bounce {
        0%, 100% {
            transform: translateY(0); /* Estado inicial y final sin movimiento */
        }
        50% {
            transform: translateY(-10px); /* Rebote hacia arriba */
        }
    }
    
    .info-bar2 {
        background-color:white;
        text-align: center;
        color:#051955;
        font-size: 12px;
        padding: 5px 0;
        position: absolute;
        width: 100%;
        text-decoration:none;
    
    }
    .info-bar2 a:hover{
       
        text-decoration:none;
    
    }
    
    .info-bar2 a{
        color:#051955;
        text-decoration:none;
    }
    .texta{
        color:#051955;
        margin: 22px;
        text-align: left;
        font-size: 19px;
        padding: 15px;
    }
    .fab.fa-tiktok {
        background: linear-gradient(45deg, #000000, #000000);
        -webkit-background-clip: text;
        color: transparent;
        font-size: 30px;
        margin-right: 42%;
      
     }
     .fab.fa-facebook{
        font-size: 35px;
        margin-left: 42%;
     }

     select {
        background-color:#051955;
        text-align: center;
        color:#ffffff;
        font-size: 19px;
        font-family:Arial, Helvetica, sans-serif;
        padding: 5px 0;
        height: 35px;
        width: 200px;
        text-decoration: none;
        
      }
      
      /* Para las opciones dentro del select */
      .styled-select option {
          background-color:#051955;
          color: #ffffff;
      }
      
      /* Para quitar el borde azul al enfocar */
      .styled-select:focus {
          outline: none;
      }
    
        /*/////////////////////*/
        
  
    
/* Contenedor principal */
.social-bar {
        background-color: white;
        color: #051955;
        font-size: 45px;
        padding: 10px 20px;
        display: flex;
        flex-direction: column; /* Organiza el contenido en columnas (texto y luego íconos) */
        justify-content: left; /* Centra el contenido horizontalmente */
        align-items: left; /* Centra el contenido verticalmente */
        height: 100px; /* Altura del banner */
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        margin-left: 25px;
    }
    
    /* Texto dentro del banner */
    .social-bar span {
        font-weight: bold;
        margin-bottom: 10px; /* Espacio entre el texto y los íconos */
    }
    
    /* Contenedor de iconos */
    .social-icons {
        display: flex;
        justify-content: left; /* Centra los íconos horizontalmente */
        align-items: left; /* Centra los íconos verticalmente */
        gap: 10px; /* Espacio entre cada ícono */
        color:red;
       
    }
    
    /* Estilo de las imágenes de iconos */
    .icon {
        width: 50px;
        height: 50px;
        border-radius: 70%;
        transition: transform 0.3s; /* Efecto de escala */
        margin-left:7px;
    
    }
    
    .icon:hover {
        transform: scale(1.1); /* Agranda la imagen al pasar el mouse */
    }
    
    /* Media Query para pantallas móviles */
    @media (max-width: 600px) {
        .social-bar {
            font-size: 15px; /* Reduce el tamaño de la fuente */
            padding: 10px 15px; /* Reduce el padding */
            height: auto; /* Ajusta la altura automáticamente */
        }
    
        .social-icons {
            display: flex;
            flex-wrap: wrap; /* Permite que los íconos se distribuyan en varias filas si es necesario */
            justify-content: center; /* Centra los íconos */
            gap: 5px; /* Reduce el espacio entre íconos */
            width: 100%; /* Asegura que ocupe todo el ancho disponible */
        }
    
        .icon {
            width: 45px; /* Aumenta el tamaño de los íconos para hacerlo más visible */
            height: 45px;
            margin-bottom: 10px; /* Añade espacio entre los íconos */
        }
    }
    
    /* Estilo para el texto del span */
    .span {
        font-size: 50px; /* Cambia el tamaño de la fuente */
        text-align:left;
        color: #051955;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }
    
    .container {
      background-color:#051955;
          color: white;
          padding: 2%;
          width: 100%; /* Ocupa todo el ancho de la pantalla */
          max-width: 100%; /* Asegura que no se limite en dispositivos grandes */
          font-size: 20px;
        }
    
        .social-bar {
            background: white;
            color: #051955;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            text-align: center;
            max-width: 400px;
            width: 80%;
            height: auto;
        }
        .social-bar h2 {
            margin-bottom: 15px;
            font-size: 22px;
            font-weight: 600;
            text-transform: uppercase;
        }
        .social-bar p {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 15px;
        }
        .social-icons {
            display: flex;
            justify-content: center;
            
           
        }
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 30%;
            transition: transform 0.3s, background-color 0.3s;
            text-decoration: none;
        }
       
        .social-icons a:hover {
            transform: scale(1.15);
            opacity: 0.8;
        }
        .icon {
            width: 25px;
            height: 25px;
        }
        .fab.fa-tiktok {
            background: linear-gradient(45deg, #000000, #000000);
            -webkit-background-clip: text;
            color: transparent;
            font-size: 30px;
            margin-right: 42%;
          
         }
         .fab.fa-facebook{
            font-size: 35px;
            margin-left: 42%;
         }
         .fab.fa-instagram {
            background: linear-gradient(45deg, #fccc63, #f71792,#bb17f7);
            -webkit-background-clip: text;
            color: transparent;
            font-size: 35px;
            margin-left:5%;
         }    
