*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f5f5;
    font-family:Arial, sans-serif;
}

/* NAVBAR */

.navbar{
    background:#7e05a7;
}

.nav-link{
    color:white !important;
}

.nav-link:hover{
    color:#7e05a7 !important;
}

/* CARRUSEL */

.carousel-img{
    height:100vh;
    object-fit:cover;
    filter:brightness(50%);
}

.carousel-caption{
    bottom:35%;
}

.carousel-caption h1{
    font-size:3rem;
}

/* SECCIONES */

section{
    padding-top:80px;
}

h2{
    color:#7e05a7;
    font-weight:bold;
}
.card h5{
    color:#7e05a7;
    font-weight:bold;
}
/* CARDS */

.card{
    height:100%;
    display:flex;
    flex-direction:column;
    transition:.3s;
}

.card img{
    height:250px;       
    object-fit:cover;   
}

.card-body{
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.card-body .btn{
    margin-top:auto;   
}

.card:hover{
    transform:translateY(-10px);
}

/* BOTONES */

.btn-custom{
    background:#7e05a7;
    color:floralwhite;
    border:none;
    padding:10px 25px;
}

.btn-custom:hover{
    background:#7e05a7;
}

/* CARDS */

.card{
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}
/* ACCORDION */

.accordion-button{
    color: #8a00b8;
    font-weight: bold;
}

.accordion-button:not(.collapsed){
    color: #8a00b8;
    background-color: white; /* opcional */
}
/* FOOTER */

footer{
    background:#7e05a7;
    color:white;
}

/* RESPONSIVE */

@media(max-width:768px){

    .carousel-caption h1{
        font-size:2rem;
    }

    .carousel-img{
        height:60vh;
    }
}
body{
    background:rgb(255, 255, 255);
}

.miniatura{
    width:120px;
    height:80px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
}

.miniatura:hover{
    transform:scale(1.1);
    border:3px solid #8a00b8;
}