*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.logo{
    width: 50px;
    height: 50px;
}

.navbar{
    box-shadow: 0 0 10px black;
}

.navbar .nav-link, .navbar .navbar-brand{
    color: white;
}

.navbar .navbar-brand {
    font-family: "Allura",Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    font-size: 2rem;
    letter-spacing: 3px;
}
.navbar .nav-link:hover{
    color: gold ;
    /* border-bottom: 2px solid gold; */
    text-decoration: underline;
    text-underline-offset: 10px;
    
}
.navbar .nav-link.active{
    color: gold ;
}

main{
    display: flex;
    flex-direction: column;
}

.hero .carousel img {
    /* width: 100%; */
    height: 80vh;
    object-fit: cover;
}

.carousel-item{
    position: relative;
}

.hero .carousel-item::before{
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.about{
    min-height: 60vh;
    gap: 60px;
    padding: 80px 1%;
    flex-wrap: wrap;
    /* background-color: aqua; */
    
}

/* imagen izquierda */
.about-content{
    width: 35%;
    /* max-width: 400px; */
    height: 350px;

    background-image: url("../uploads/about-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-color: aqua; */
}

/* .about-highlight{
    color: gold;
} */

/* logo derecha */
.about-logo{
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo img{
    width: 100%;
    max-width: 400px;
}
.buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0 0 0 ;
    /* background-color: aqua; */
}
.buttons .content{
    width: 65%;
    /* display: flex; */
}
.buttons .content .nav{
    border: 1px solid black;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5px;
    /* background-color: goldenrod */
}
.buttons .content .nav li{
    list-style: none;
    width:33%;
    
    /* background-color: aqua; */
}
.buttons .nav-pills .nav-link{
    width:100% ;
    background-color: #f4f4f4;
    color: black;
    border-radius: 0;
    height: 40px;
    border: none;
}
.buttons .nav-pills .nav-link.active{
    background-color: #dc3545 ;
    color: white;
}
.buttons .nav-pills .nav-link:hover{
    background-color: #000000 ;
    color: white;
}


.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        line-height: 50px;
        bottom: 20px;
        right: 20px;
    }
}


@media (max-width:768px){

    .about{
        flex-direction: column;
    }
    .about-content{
        width: 100%;
        max-width: 400px;
    }
    .buttons .content{
        width: 100%;
        padding: 1px;
    }
    .buttons .content .nav li button{
        /* width: 100%; */
        height:  60px;
    }

}