/* * {
    box-sizing: border-box;
} */

body {
    /* background-image: url("../../img/portada-quienes.png"); */
    font-family: 'Raleway', sans-serif;
    /* font-size: 1.6rem; */
    line-height: 1.5;
    background-color:rgba(255, 255, 255, 0.85); /* Color negro con 50% de opacidad */
    /* background-blend-mode: lighten; Modo de fusión para oscurecer la imagen */
    /* background-size: cover; Ajusta la imagen para cubrir todo el elemento */
    /* background-position: center; Centra la imagen */
}

/* ------------Navbar----------------*/
.navbar-custom {
    /*background: linear-gradient(to right, #baf8a2, #02d502, #013101);*/   /*fondo original*/
    background: linear-gradient(to right, #baf8a2, #7af97a, #03c603);
    padding: 0px 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.696)
}
.navbar-custom .navbar-brand,
.navbar-custom .navbar-nav .nav-link {
    /* color: rgb(243, 255, 5); */
    color:black;
    font-size: 1.15em;
    margin: 0px 14px;
}

.dropdown-menu.show{
    /* background-color:#013101; */
    background: linear-gradient(to right, #baf8a2, #7af97a, #03c603);
    font-size: 1.15em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.696);
    border-radius: 5px;
}

.dropdown-item{
    /* color: rgb(243, 255, 5); */
    color: black;
}

.dropdown-menu.show a:hover{
    background-color:transparent;
    font-weight: bolder;
}


/* @media (max-width:991.9px){
    .navbar-custom{
        padding:0 15px 0 15px;
        font-size: 0.75em;
    }
} */

img {
    max-width: 100%;
}

.imagen-prod{
    border-radius: 5px;
}

h1 {
    font-size: 3.5em;
    color: #0B437E
}

@keyframes aparecer {
    0% {opacity: 0%;}
    20% {opacity: 20%;}
    40% {opacity: 40%;}
    60% {opacity: 60%;}
    80% {opacity: 80%;}
    100% {opacity: 100%;}
}

.jumbotron{
    margin-top: 90px;
    background-color:transparent;
    color:#2196F3;
}

.jumbotron img{
    /* width: 70%; */
    border-radius: 5px;
}

.jumbotron p{
    font-size: 1.2em;
    color: #00080e;
}

.container{
    width: 80%;
}

.speech{
    margin-top: 0px;
    padding-top: 20px;
}

/* .entrada-blog{
    margin-bottom: 30px;
} */

/*--------------------footer------------------*/
.footer-custom {
    font-size: 0.9em;
    background: linear-gradient(to right, #baf8a2, #7af97a, #03c603);
    padding: 20px;
    /*color: rgb(243, 255, 5);*/    /*color amarillo*/
    color: black;
    /* color: #2196F3; */
}

.footer-custom p{
    margin:10px 0 0 0;
}

.footer-custom a{
    /*color: rgb(243, 255, 5);*/    /*color amarillo*/
    color: black;
    /* color:#2196F3; */
}

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

.footer-custom .row {
    display: flex;
    /* flex-wrap: wrap; */
    /* justify-content: space-between; */
}

.footer-custom .col {
    flex: 1;
    text-align: center;
    margin-bottom: 10px;
}

.footer-custom .logo {
    max-width: 100px;
}

.insta img:hover{
    width: 30px;
}

#creditos{
    font-size: 0.85em;
    color:rgba(33, 24, 24, 0.849)
}

@media (max-width:1024px){
    h1{
        font-size: 3em;
    }
    .jumbotron p{
        font-size: 1em;
    }
}

@media (max-width:768px){
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .container{
        width: 100%;
    }
    .jumbotron img{
        margin-bottom: 30px;
    }
    h1{
        font-size: 2.5em;
    }
    .titulo{
        margin-bottom: 0px;
        padding-bottom: 10px;
    }
}

@media (max-width:425px){
    h1{
        font-size: 2em;
    }
}

@media (max-width:991.9px){
    .navbar-custom{
        padding: 0 20px;
        font-size: 0.75em;
    }

    .display-7{
        font-size: 1rem;
    }
    .jumbotron{
        margin-top: 120px;
    }
    .jumbotron-fluid.speech{
        margin-top: 0px;
    }
    .jumbotron-fluid.text-center{
        padding-bottom: 0;
    }

}




@media (min-width: 769px) {
    .contenedor-flex {
        display: flex;
        justify-content: space-between;
    }
    .contenido-principal {
        flex-basis: calc(60% - 1rem);
    }
    .sidebar {
        flex-basis: calc(50% - 1rem);
    }
    /*calc() hace un cálculo matemático*/
    /*Ocupa el 60% y el 20% del contenedor respectivamente - 1 rem para dar espacio entre columnas*/
}

/*----------------------------WHATSAPP------------------------------*/
.whatsapp-button {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    /* padding: 15px; */
    font-size: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 99999;
}