*{
    padding:0;
    margin: 0;
    box-sizing: border-box;
    
}
.body-index{
    overflow: hidden;
}

.contenedor{
    display: flex;
    min-height: 100dvh;
    
}

.contenedor--left {
    width: 50%;
    
    display: flex;
    flex-direction: column; /* apila h1, p y button */
    justify-content: center; /* centra vertical */
    align-items: center; /* centra horizontal */
    padding: 0 3%;
    text-align: center;
}

.contenedor--left h1{
    font-family: "Lora", serif;
  font-weight: 500; /* negrita */
  font-size: 2em;
}

.contenedor--right{
    height: 100%;
    width: 50%;
    
}

.contenedor--right img{
      width: 100%;
  height: 100dvh;
  object-fit: cover;
}

.contenedor--left p{
    margin: 3% 0%;
    font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.1em;
  
  
  
}

.contenedor--left button {
    margin: 1% 0;
    padding: 10px 20px;
    
    background-color: #fff;
    color: #1c2b40;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Lora", serif;
    font-weight: 400;
    border-radius: 4px;
    border: 1px solid  #2b384b;
    
}

.contenedor--left button:hover {
    
    
    
    background-color: #2b384b;
    color: #f5f0e5; /* solo cambia el color */
    transform: scale(1.05); /* agranda visualmente */
    
    
}


/* desvanecimiento */ 
.fade-out {
    animation: fadeOut 0.5s forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}



/******************************************* PAGINA PRINCIPAL *************************************/
/*************************************/                      /**********************************/ 
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%; 
    box-shadow: 0px 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.whatsapp-float img:hover {
    transform: scale(1.1); /* Pequeño efecto al pasar el mouse */
}

.logo-nav{
    width: 90px;
}
/* animacion logo*/

.shake-bottom {
	animation: shake-bottom 3s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}
@keyframes shake-bottom {
  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%,
  40%,
  60% {
    transform: rotate(-4deg);
  }
  30%,
  50%,
  70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}

/**************************************/

.navbar-brand {
    margin-left: 16px;
    font-family: 'Lora', serif;
} 

.nav-item{
    color: #2b384b;
    font-family: "Poppins", sans-serif;
    
}
.nav-item:hover{
    background-color: #f5f0e5;
}

.contenedor--2{
    background-color: #fff;
}

div.container-fluid{
    padding: 0 3%;
}



.contenedor--2 {
    width: 100%;
    padding: 40px;
   
    text-align: center;
}

.contenedor--2 h1 {
    font-family: 'Lora', serif;
    font-size: 2em;
    margin-bottom: 20px;
    color: #2b384b;
}

.contenedor--2 p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    
    max-width: 700px;
}

.cajas {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-family: 'Lora', serif;
}

.caja {
    background-color: #ffffff;
   
    background-size:contain;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 250px;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.caja:hover {
    transform: translateY(-5px);
}

.icono {
    font-size: 40px;
    color: #2b384b; /* podés cambiar el color a tu paleta */
    margin-bottom: 15px;
}

.caja h2 {
    
    margin-bottom: 10px;
    color: #2b384b;
    font-size: 1.8em;
}
.caja p{
    text-align: left;
    font-size: 0.9em;
    color: #1c2b40;
}


.contenedor--3 {
    width: 100%;
    padding: 40px 10%;
     background-color: #f9f9f9
}

.contenedor--3 h1 {
    text-align: center;
    font-family: 'Lora', serif;
    font-size: 2em;
    margin-bottom: 40px;
    color: #2b384b;
}

.servicio {
    
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.icono-servicio {
    font-size: 60px;
    color: #2b384b; /* podés cambiar el color a tu paleta */
    flex-shrink: 0; /* para que no se deforme */
}

.texto {
    flex: 1;
    min-width: 250px;
}

.texto h2 {
    font-family: 'Lora', serif;
    margin-bottom: 10px;
    color: #2b384b;
    font-size: 1.8em;
}

.texto p {
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    color: #2b384b;
    font-size: 0.9em;
}

/********       ANIMACION FONDO ***********************/
.kenburns-left {
	-webkit-animation: kenburns-left 5s ease-out both;
	        animation: kenburns-left 5s ease-out both;
}
/**
 * ----------------------------------------
 * animation kenburns-left
 * ----------------------------------------
 */
@-webkit-keyframes kenburns-left {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    -webkit-transform-origin: 16% 50%;
            transform-origin: 16% 50%;
  }
  100% {
    -webkit-transform: scale(1.25) translate(-20px, 15px);
            transform: scale(1.25) translate(-20px, 15px);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
@keyframes kenburns-left {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    -webkit-transform-origin: 16% 50%;
            transform-origin: 16% 50%;
  }
  100% {
    -webkit-transform: scale(1.25) translate(-20px, 15px);
            transform: scale(1.25) translate(-20px, 15px);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
.contenedor--5 {
    width: 100%;
    padding: 40px 10%;
    background: url(../images/socios2.png) no-repeat center center; /* centra la imagen y evita que se repita */
    background-size: cover; /* ajusta la imagen para cubrir todo el contenedor */
     background-attachment: fixed; /* hace que la imagen quede fija al hacer scroll */
    
     
     
}
.banner1{
        width: 100%;
    
    background: url(../images/socios2.png) no-repeat center center; /* centra la imagen y evita que se repita */
    background-size: cover; /* ajusta la imagen para cubrir todo el contenedor */
     background-attachment: fixed; /* hace que la imagen quede fija al hacer scroll */
     

}
.banner1 h1{
    font-family: 'Lora',serif;
    font-size: 2em;
    
}
.banner1 p{
    font-family:'Poppins', sans-serif ;
    font-size: 0.9em;
    
}

.contenedor--4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2b384b; /* azul institucional */
    color: #f5f0e5;
    padding: 0 10%;
    flex-wrap: wrap; /* para que en mobile se acomode */
}

.footer-left img {
    max-width: 250px;
    height: auto;
}

.footer-right {
    text-align: right;
    flex: 1;
    min-width: 250px;
}

.footer-right p {
    font-family: 'Poppins', sans-serif;
    margin: 5px 0;
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: right;
}
.resaltado{
    background-color: #f5f0e5f5;
    color: #2b384b;
}

.correo{
    color: #f5f0e5;
    text-decoration: none;
    
}

.correo:hover{
    text-decoration: underline;
}
/************************* MEDIA QUERIES ************************/
@media (max-width: 768px) {
    .body-index {
        overflow: hidden; /* opcional, evita scroll */
    }

    .contenedor {
        flex-direction: column;
        height: 100vh; /* altura exacta de la pantalla */
    }

    .contenedor--left {
        width: 100%;
        height: 100vh; /* llenar toda la pantalla */
        padding: 0; /* elimina padding que suma altura extra */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;

        background: url('../images/imagen\ right\ mobile2.png') no-repeat center;
         background-size: cover;
        color: #fff;
    }

    .contenedor--right {
        display: none;
    }

    .contenedor--left h1
     {
       
       
        font-size: 1.5em;
        
    }
    .contenedor--left p{
        font-size: 1em;
    }

    .contenedor--2 h1{
        font-size: 1.5em;
    }

    .contenedor--2 p{
        font-size: 1em;
    }
    
    .contenedor--3 h1{
        font-size: 1.5em;
    }

    .caja h2{
        font-size: 1.2em;
    }
    

    .caja p{
        font-size: 1em ;
    }

    .texto h2 {
        font-size: 1.2em;
    }

    .icono-servicio{
        font-size:40px;
    }

    .contenedor--5 h1{
        font-size: 1.5em;
    }

   .contenedor--5 p{
    font-size: 1em;
  }

  .footer-right p{
    display: flex;
    justify-content: center;
    
    font-size: 0.8em;
  }

  .footer-left {
    width: 100%;
    display: flex;
    justify-content: center;
}
.footer-right p {
    text-align: center;
}
  
    

    .contenedor--left button{
        
            
            
            
            background-color: #2b384b;
            color: #f5f0e5;
            font-size: 1em;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: "Lora", serif;
            font-weight: 400;
            border-radius: 4px;
            border: 1px solid  #f5f0e5;

        
    }

    .contenedor button:hover{
        background-color: #f5f0e5;
        color: #2b384b;

    }



    /******************** mediqueries para paginaPrincipal **************/

    
    


}

