/* Estilos Generales */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui;
    text-align: center;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.contacto-footer {
    background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.navbar {
    background-color: #729CEF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.Social-media a i {
    color: rgb(90, 87, 87);
    font-size: large;
    padding: 10px 0;
    transition: 0.5s;
}

/* Estilos de index */
.carousel-ejemplo {
    height: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}

.carousel-item {
    background: no-repeat center center scroll;
    background-size: cover;
    font-weight: 350;
    min-height: 350px;
    @media (max-width: 780px) {
        min-height: 150px;
       }
}



.carousel-inner {
    width: 100%;
    height:50%
}

@media (max-width: 1050px) {
    .carousel-inner {
        width: 100%;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background: none;
    border: none;
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    font-size: 2rem;
    color: white;
}

.carousel-indicators {
    bottom: 10px; /* Ajusta la posición vertical según sea necesario */
}

.carousel-indicators button {
    width: 5%; /* Ajusta el ancho según sea necesario */
    height: 10px; /* Ajusta la altura según sea necesario */
    margin: 0 5px; /* Ajusta el margen horizontal entre los botones */
    border: none; /* Elimis-pagena el borde */
}

.container-index {
    margin-top: 55px; 
    padding-bottom: 20px; 
    padding-top: 30px; 
    background-color: white; 

    @media (max-width: 1050px) {
        margin-left: 0px; 
        margin-right: 0px;
    } 
}

.main-text {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 7%;
    margin-top: 2rem;
    padding-left: 5%;
    padding-right: 5%;
    text-align: justify;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.txt {
    text-align: center;
    font-family: Mynerve;
    font-weight: 250;
    color: #C21E27;
}


   /* Media queries for mobile layout */
@media (max-width: 780px) {
    .row.flex-md-row-reverse {
        flex-direction: column-reverse;
    }

    .col-md-6 {
        width: 100%;
        padding: 0;
    }

    .main-content-about .video-container {
        margin-top: 0;
    }
    
}



/* Estilos de Contacto */
.cards-contacto {
    border: 1px rgb(90, 87, 87) solid;
    border-radius: 20px;
    display: inline-block;
    margin: 10px;
    padding: 20px 30px;
    transition: 0.6s;
    height: 370px;
    width: 230px;
    color: rgb(90, 87, 87);
}

.cards-contacto img {
    border-radius: 10%;
    margin-bottom: 10px;
    outline: 2px solid rgb(90, 87, 87);
    padding: 2px;
    transition: 0.2s;
    width: 145px;
    height: 170px;
    
}

.container-contacto {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.container-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

/* Estilos de Nosotros */
.header-text {
    color: #C21E27;
    font-family: Mynerve;
    font-weight: 300;
}

.main-content-index {
    color: black;
    font-weight: 300;
    min-height: 1000px;
}

.main-content-about {
    background-image: url("img/IMG_5481.jpg");
    background-size: cover;
    color: black;
    font-weight: 300;
    min-height: 1000px;
}

.main-content-about h2 {
    font-size: 19px;
    font-weight: bold;
}

.main-content-about p {
    font-size: 17px;
    margin-left:35px;
    margin-right: 35px
}

.social-icons {
    display: flex;
    justify-content: center;
}

.Social-media a i {
    color: rgb(90, 87, 87);
    font-size: large;
    padding: 10px 0;
    transition: 0.5s;
}

.Social-media a i:hover {
    transform: scale(2);
    transition: 0.5s;
}
