body {
    background: linear-gradient(to bottom, #212529, #212529);
    color: white;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.navbar-brand img {
    height: 40px;
}
.hero {
    height: 63vh;
    background-size: cover;
    background-position: center;
    @media screen and (max-width: 768px) {
        height: 50vh;
        
    }
}
.site-title {
    font-size: 11rem;
    margin: 0;
    font-weight: 800;
    line-height: 1.2; /* Ajusta la altura de línea */
    letter-spacing: -0.05em; /* Reduce ligeramente el espacio entre letras */
    @media screen and (max-width: 768px) {
        font-size: 2rem;
        line-height: 1.1; /* Ajusta para móviles */
        letter-spacing: normal; /* Restablece si es necesario */
    }
}

.social-buttons a {
    display: block;
    margin: 10px 0;
    color: white;
    padding: 10px;
    border-radius: 50px;
    text-align: center;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
}
.social-buttons .facebook { background-color: #1877f2; }
.social-buttons .instagram { background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); }
.social-buttons .whatsapp { background-color: #25d366; }
.social-buttons .youtube { background-color: #ff0000; }
.social-buttons .mail { background-color: #c1cacb; }
.social-buttons .calendar { background-color: #c1cacb; }
.gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
footer {
    text-align: center;
    margin-top: 20px;
}
.social-buttons a{
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

.social-buttons a:hover{
 transform : scale(1.25);
 -moz-transform : scale(1.25);
 -webkit-transform : scale(1.25);
 -o-transform : scale(1.25);
 -ms-transform : scale(1.25);
}

.calendar iframe {
    width: 800px!important;
    height: 800px!important;
    @media screen and (max-width: 768px) {
        width: 100%!important;
        height: 400px!important;
        
    }
}