body {
    color: white;
    background-color: black;
}
.logo {
    width: 135px;
    height: 42px;
}
h1, h2 {
    color: #e4dbf1;
    font-family: 'Monserrat', sans-serif;
    font-weight: 900;
}
p {
    text-align: justify;
    line-height: 1.5;
}

/*          NAVBAR          */
.navbar-collapse .nav-link {
    font-weight: bold;
    position: relative;
    display: inline-block;
}
.navbar-collapse .nav-link:hover {
    margin: 0 4px;
    transition: 0.3s;
    transform: scale(1.02);
    background: linear-gradient(45deg, blue, #833AB4, #C13584, red);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*          HOME            */
.fondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./img/fondo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5; /* ajusta el nivel de transparencia */
    z-index: -1;
}
#spanColor::before {
    content: "";
    position: absolute;
    left: 0;
    width: 105%;
    height: 100%;
    background-color: #00FF00;
    border-radius: 10px;
    transform: rotate(-4deg);
    transform-origin: left bottom;
    z-index: -1; /* poner el fondo detrás del texto */
}
.img-izquierda, .img-medio, .img-derecha {
    width: 100%;
    height: 200px;
    overflow: hidden;
    object-fit: cover;
    border: 2px solid white;
}
.img-izquierda {
    border-radius: 10px 100px 100px 10px;
}
.img-medio {
    border-radius: 100px;
}
.img-derecha {
    border-radius: 100px 10px 10px 100px;
}

/*          CARD           */
.card {
    background-color: #5d3fcc;
}
.card-title {
    color: white;
}
.card-img {
    width: 100%;
    object-fit: fill;
    height: 200px;
}
.carding:hover {
    transform: scale(1.02);
    transition: 0.2s;
}

/*          CAROUSEL            */
.carousel-item {
    cursor: pointer;
}
.carousel-img, .card-img-page {
    width: 100%;
    object-fit: fill;
    height: 400px;
    border-radius: 10px;
    border: 2px solid white;
}
.item-contorno {
    font-weight: bolder;
    color: #d4d6f8;
    text-shadow: 4px 4px 10px black;
}

/*          MAPS            */
.map {
    position: relative;
    padding-bottom: 70.25%; /* 16:9 ratio */
    height: 0;
    border-radius: 10px;
    overflow: hidden;
}
.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*          FOOTER          */
h5 {
    color: #50b5f8;
    font-family: 'Monserrat', sans-serif;
    font-weight: 800;
}
footer hr {
    background-color: #fff;
}
.redes-sociales li a {
    font-size: 25px;
}
.redes-sociales li:nth-child(1) a i {
    color: blue;
}
.redes-sociales li:nth-child(2) a i {
    color: #1DA1F2;
}
.redes-sociales li:nth-child(3) a i {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.redes-sociales li:nth-child(4) a i {
    background: linear-gradient(45deg, #EE1D52, rgb(221, 221, 221), black);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.redes-sociales li:nth-child(5) a i {
    color: red;
}
.redes-sociales li:hover {
    transform: scale(1.4);
}
.redes-sociales li a:hover {
    margin: 0 4px;
    transition: 0.3s;
}

.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 15px;
    border: 1px solid green;
    border-radius: 50%;
    background-color: transparent;
    box-shadow: 2px 2px 15px green;
    z-index: 100;
    outline: none;
    cursor: pointer;
}
.btn-whatsapp a {
    color: #00ee57;
    font-size: 40px;
    padding: 9px 7px;
}
.btn-whatsapp:hover {
    transform: scale(1.07);
}

@media (max-width: 992px) {
    .carousel-img, .card-img-page {
        height: 300px;
    }

    .img-izquierda, .img-medio, .img-derecha {
        height: 150px;
    }
}