@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    /* color elementos */
    --colorUno: #009ce0;
    --colorDos: #141313;
    --colorTres:#fff;
    --colorCuatro: #000;
    --colorMedio: #bec1c2;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

body{
    font-family: "Raleway", sans-serif;
   
}

/* style navbar */

.imgLogo{
    width: 50px;
    height: auto;
}
.spj{
    color: var(--colorUno);
    font-weight: 800;
}

.negritaspj, .bold{
    font-weight: 800;
}

.bold{
    margin-top: 20px;
}

.afip{
    color: var(--colorDos);
    font-weight: 400;
    padding-left: 3px;
}

/* styles portada */
.altura{
    height: 50%;
}
.portadaTexto{
    background-color: var(--colorMedio);
    color: var(--colorDos);
    opacity: 80%;
    padding: 10px 0;
    width: 60%;
    margin: auto;
}

.linea{
    width: 100px;
    height: 50px;
    border-top: 3px solid var(--colorUno);
    margin: auto;
}

/* sección valores */

h1{
   /*border-bottom: 1px solid var(--colorUno); */
   margin-top: 1.5rem;
   padding: 1rem;
   text-align: center;
}

.header{
    position:sticky;
    top: 0;
    z-index:1000;
}

.imgquienessomos{
    width: 648px;
    height: auto;
}

/*carrusel index*/
.blur{
    background: rgba(255, 255, 255, 0.3); /* Fondo semitransparente para resaltar el efecto */
  backdrop-filter: blur(10px); /* Aplica el desenfoque solo al fondo detrás del div */
  -webkit-backdrop-filter: blur(10px); /* Para compatibilidad con Safari */
  padding: 20px;
  border-radius: 10px;
}

.carousel-item{
    height: 85vh;
}

.fondoPortadaPrincipal{
    background-image: url('../assets/img/institucional2.png');
    background-size: cover;
    background-position: center;
    height: 85vh;
}

.bolder, .bienestar{
    font-weight: 800;
    font-size: 2rem;
}

.logohome{
    width: 20%;
}

.logohomeb{
    width: 7%;
}


/*Seccion Principios empresa*/
.cardPrincipiosEmpresa{
    height: 30vh;
    width: 40vh;
    img{
        height: 40%;
        
    }
}

/* quienes somos */
.quienesSomos{
    margin-bottom:15px;
    @media screen and (max-width: 768px){
        margin-bottom: 0;
    }
}


/* styles sección relleno */

.bannerAzul{
    background-color: var(--colorUno);
    padding: 1rem;
    margin-top: 2rem;
}

.bannerAzul p{
    font-size: 1.2rem;
    color: var(--colorTres);  
}

.bannerAzul p:last-child{
    font-size: 2rem;
    color: var(--colorTres); 
    text-align: center; 
    margin-top: 10px;
}

/* portada de afilaiciones */

.botonesAfiliacion{
    padding: 30px;

}

#empresaId, #personaId{
    display: none;
}

/* Portadas de pestañas institucional */
.banner {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/img/institucional.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bannerPrensa {
    background-image: url('../assets/img/conocenos.png')!important;
}

.bannerEfemerides {
    background-image: url('../assets/img/efemerides.png')!important;
}

.bannerBeneficios{
    background-image: url('../assets/img/beneficiosbanner.png')!important;
}

.bannerAfiliaciones{
    background-image: url('../assets/img/afiliaciones.png')!important;
}

.gris{
    font-size: 0.8;
    color:#545556
}

.alinear{
    text-align: left!important;
    margin-top: 15px;
}
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 153, 204, 0.2); /* Color azul semitransparente */
}
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    color: white;
}
.banner h1 {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}
.banner p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.nombreFundador{
    font-size: 1.2rem;
    font-weight: 800;
    color: #141313;
    text-align: center;
}

.nombreCargoFundador{
    font-size: 1rem;
    font-weight: 600;
    color: var(--colorUno);
    text-align: center;
}

@media (max-width: 768px) {
    .banner h1 {
        font-size: 3rem;
    }
    .banner p {
        font-size: 1.2rem;
    }

    #quitarMobile{
        display: none;
    }

    .lineac{
        width: 100px;
        height: 5px;
        border-top: 3px solid var(--colorUno);
        margin: auto;
    }
}
@media (max-width: 576px) {
    .banner h1 {
        font-size: 2.5rem;
    }
    .banner p {
        font-size: 1rem;
    }

    #quitarMobile{
        display: none;
    }
}
.parrafoCentral{
    font-size: 1.2rem;
    padding: 10px;
    margin-bottom: 10px;
}

/* styles del footer */

footer {
    background-color: #222;
    color: #fff;
    padding: 30px 0;
}
footer h5 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
footer ul {
    list-style-type: none;
    padding: 0;
}
footer ul li {
    margin-bottom: 10px;
}
footer ul li a {
    color: #fff;
    text-decoration: none;
}
footer .social-icons a {
    color: #fff;
    font-size: 24px;
    margin-right: 15px;
}
footer .copyright {
    margin-top: 20px;
    font-size: 0.9em;
}
@media (max-width: 767px) {
    footer .col-md-4, footer .col-md-2, footer .col-md-3 {
        margin-bottom: 30px;
    }
    footer h5 {
        margin-top: 20px;
    }
    footer .social-icons {
        margin-bottom: 20px;

    }

    #quitarMobile{
        display: none;
    }

    .mobilewrap{
        width: 100%;
        display: block;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .margenmobile{
        margin-top: 3rem;
    }

    iframe{
        width: 380px;
    }

    .margenCon{
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

/* boton */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-float a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Animación de rebote */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.whatsapp-float {
    animation: bounce 2s infinite;
}

/* Para dispositivos móviles */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}
