@font-face {
    font-family: M-Regular;
    src: url('/assets/fonts/Montserrat-Regular.ttf');
}
@font-face {
    font-family: M-Light;
    src: url('/assets/fonts/Montserrat-Light.ttf');
}
@font-face {
    font-family: M-Medium;
    src: url('/assets/fonts/Montserrat-Medium.ttf');
}
@font-face {
    font-family: M-Bold;
    src: url('/assets/fonts/Montserrat-Bold.ttf');
}

/* Estilos globales */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.navbar{
    background-color: #141518;
}

.nav-link{
    color: #a6a6a6a7;
    font-family: M-Bold;
}
.nav-link:hover{
    color:#a6a6a6;
}

.logo-img{
    width: 200px;
}

/* Hero Section */
.hero {
    padding-top:80px;
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('/assets/img/img1.jpg') no-repeat top center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.heronoimg{
    background-color: #141518;
    padding:50px;
}

/* Fondo oscuro para asegurar la legibilidad del texto */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#141518a6;
}

/* Asegura que el texto esté sobre la capa oscura */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1{
    font-family: M-Bold;
}

.hero h2{
    font-family: M-Medium;
}
.carousel-inner{

    border-radius:20px;
}

.main-button-1{
    background-color: #a6a6a6;
    color:rgb(255, 255, 255);
    text-decoration: none;
    padding:10px;
    border-radius: 20px;
    font-family: M-Bold;
    display: inline-block;
    margin-top:20px;
    transition:0.3s;
}
.main-button-1:hover{
    padding-left:20px;
    padding-right:20px;
}

.about{
    background-color: #141518;
    min-height: 100vh;
    color:white;
    padding-top:100px;
}

.about p{
    font-family: M-Light;
}

.about h3{
    font-family: M-Bold;
}
.addons{
    background-color: #141518;
    padding-top:20px;
}
.addons h3{
    font-family: M-Bold;
    color:#ffffff;
    margin-top:20px;
}
.addons h4{
    font-family: M-Medium;
    color:#ffffff;
    margin-bottom:20px;
}
.info-box{
    display: flex;
    background-color: #a6a6a6;
    color:white;
    align-items: center;
    width: 100%;
    padding:20px;
    margin-bottom:20px;
    border-radius: 20px;
}
.customfade{
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.customfade.show {
    opacity: 1;
    transform: translateY(0);
}
.info-box p{
    font-family: M-Bold;
    font-size:14px;
    margin:0px;
}
.info-box i{
    font-size:40px;
    margin-right:20px;
    color:#141518;
}


#whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    z-index: 100;
}

#whatsapp-btn img {
    width: 30px;
}

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

.carousel-item{
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    vertical-align: middle;
}
.carousel-item img{
}

.trasteros{
    padding-top:50px;
    background-color: #c4c2c2;
}

.trasteros h3{
    font-family: M-Bold;
    color:#141518;
}

.trasteroimg{
    width: 100%;
}
.trasteros p{
    color:#141518;
    font-family: M-Regular;
}
.trasteros h4{
    font-family: M-Bold;
    color:#141518;
}

.main-button-2{
    background-color: #141518;
    color:white;
    border:none;
    border-radius: 20px;
    margin-right:20px;
    padding:15px;
    font-family: M-Bold;
    transition:0.3s;
}
.main-button-2:hover{
    transform: scale(1.1);
}
.toggleActive{
    background-color: #14151889;
}
.hidden{
    display: none;
}

.main-button-3{
    background-color: #14151889;
    color:rgb(255, 255, 255);
    text-decoration: none;
    padding:10px;
    border-radius: 20px;
    font-family: M-Bold;
    display: inline-block;
    margin-top:20px;
    transition:0.3s;
}
.main-button-3:hover{
    background-color: #141518;
    padding-left:20px;
    padding-right:20px;
}

.faqs{
    padding-top:50px;
    padding-bottom:50px;
    background-color: #141518;
}
.faqs h3{
    font-family: M-Bold;
    color:white;
}
.faqs h4{
    font-family: M-Regular;
    color:white;
}
.accordion-item {
    background-color: #c4c2c2 !important;
    border: 1px solid #141518 !important;
    border-radius: 5px;
}

.accordion-button {
    background-color: #c4c2c2 !important;
    color: #141518 !important;
    border: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #c4c2c2 !important;
    color: #141518 !important;
}

.accordion-body {
    background-color: #c4c2c2 !important;
    color: #141518 !important;
}

.accordion-button{
    font-family: M-Regular;
}
.accordion-item,
.accordion-body {
    font-family: M-Light !important;
}
.contact-box{
    color:white;
    display: flex;
    flex-direction: column;
    padding:20px;
}
.contact-box i{
    font-size:30px;
    margin-right:10px;
}
.contact-box p{
    font-size:14px;
    display: flex;
    align-items: center;
    font-family: M-Regular;
}

footer{
    background-color: #a6a6a6;
    color:#141518;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: M-Regular;
    padding:10px;
}
footer p{
    margin:0px;
}

.navbar-toggler{
    border:none;
    color:white;
    outline: none;
}
.navbar-toggler:focus{
    border:none;
    outline:none;
    box-shadow: none;
}

@media(max-width:700px){
    .main-button-1{
        font-size:13px;
    }
    .logo-img{
        width: 150px;
    }
    .contact-box{
        padding:0px;
    }
    .hero{
        height: 80vh;
    }
    .hero h1{
        font-size:20px;
    }
    .hero h2{
        font-size:16px;
    }
    .addons h3{
        font-size:20px;
    }
    .addons h4{
        font-size:16px;
    }
    .info-box p{
        font-size:12px;
    }
    #whatsapp-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #25d366;
        color: white;
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease-in-out;
        z-index: 100;
    }
    .about h3{
        margin-top:20px;
        font-size:20px;
    }
    .trasteros h3{
        font-size:20px;
        margin-bottom:10px;
    }
    .trasteros h4{
        font-size:16px;
        margin-top:20px;
    }
    .trasteros p{
        font-size:13px;
    }
    .main-button-2{
        font-size:13px;
        width:100%;
        margin:0px;
        margin-bottom:10px;
    }
    .main-button-2:hover{
        transform: none;
    }
    .main-button-3{
        font-size:13px;
    }
    .trasteros .col-lg-4{
        width: 100%;
        text-align: center;
        margin-bottom:20px;
    }
    .faqs h3{
        font-size:20px;
    }
    .faqs h4{
        font-size:16px;
    }
    .phone-spacer{
        margin-top:20px;
    }
    .about{
        min-height: 80vh;
        padding-bottom:30px;
    }

}

