@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'nunito';
}
.all-content{
    background:#DFDCB9;
}
/* navbar */
#navbar{
    background-color: #201f1f;
    padding-left: 60px;
    font-weight: bold;
    padding-left: 15%;
}
#logo{
    font-size: 23px;
    color: white;
}
#logo img{
    margin-bottom: 15px;
    padding-right: 20px;
    padding-top: 10px;
}
.navbar-nav{
    margin-left: 10px;
}
.nav-link{
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 1px black;
    margin-left: 15px;
    transition: 0.5s ease;
}
.nav-link:hover{
    background-color: #D69F1F;
    color: white;
    border-radius: 5px;
}

.nav-link.activeQuien{
    background-color: #D69F1F;
    color: white;
    border-radius: 5px;
}

.icons{
    margin-left: 30px;
}
.icons img{
    margin-left: 10px;
    transition: 0.5s ease;
    cursor: pointer;
}
.icons img:hover{
    transform: translateY(-5px);
}
@media screen and (max-width:330px){
    #logo{
        font-size: 15px;
    }
}
/* navbar end */

/* about */
#about{
    margin-top: 50px;
}
#about h1 {
    text-align: center;
    font-weight: bold;
    margin-top: 50px;
    color: #D69F1F;
    text-shadow: 1px 1px 1px black;
    border-bottom: 2px solid #D69F1F;
}


#about .card {
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra verticalmente */
    align-items: center; /* Centra horizontalmente */
    background-color: #D69F1F;
    box-shadow: 0px 0px 5px black;
    height: 270px; /* Ajusta la altura según sea necesario */
}

#about .card img {
    max-height: 100%; /* Asegúrate de que la imagen no exceda la altura del contenedor */
    max-width: 100%; /* Asegúrate de que la imagen no exceda el ancho del contenedor */
    object-fit: contain; /* Ajusta la imagen para que se contenga dentro del contenedor */
}
#about p{
    color: black;
    text-shadow: 1px 1px 1px white;
    font-weight: bold;
}

@media screen and (max-width:1000px){
    #about p{
        font-size: 10px;
    }
}
@media screen and (max-width:760px){
    #about p{
        font-size: 20px;
    }
}
/* about */

/* footer */
#footer {
    width: 100%;
    background-color: #201f1f;
    box-shadow: 0px 0px 5px black;
    margin-top: 50px;
    color: white;
    padding: 40px 20px;
    position: relative;
    /* Posición relativa para asegurar que el contenido no se desplace */
}

#footer.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.col-md-4.pt-3.py-md-0 {
    flex: 1;
    margin-bottom: 20px;
}

.col-md-4.pt-3.py-md-0#left {
    text-align: left;
}

.col-md-4.pt-3.py-md-0#center {
    text-align: center;
}

.col-md-4.pt-3.py-md-0#right {
    text-align: center;
}

.col-md-4.pt-3.py-md-0 h4 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #fdd835;
}

.col-md-4.pt-3.py-md-0 p,
.col-md-4.pt-3.py-md-0 a {
    font-size: 14px;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 10px;
    line-height: 1.6;
}

.col-md-4.pt-3.py-md-0 a:hover {
    color: #fdd835;
}

.google-map iframe {
    border-radius: 10px;
    border: none;
    width: 300px;
    height: 200px;
}

.social-icons {
    display: flex;
    justify-content: center;
    /* Centramos los íconos horizontalmente */
    gap: 15px;
    margin-top: 10px;
}

.social-icons img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 15px;
}

.footer-bottom p {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

/* footer */
html{
    scroll-behavior: smooth;
}
.arrow{
    position: fixed;
    background-color: #D69F1F;
    border-radius: 50px;
    height: 50px;
    bottom: 40px;
    right: 50px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
}