body{
    background-color: #F5F0E8;
}

.card{
    background-color: #FFFFFF;
}
h2{
    color: #7A5C3E;
}
.bg-custom-warm {
    background-color: #fcf8f2;
}

.btn-custom {
    background-color: #2b7a78;
    color: white;
}

.btn-custom:hover {
    background-color: #17252a;
    color: white;
}

.galeria-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    transition: .3s;
}

.galeria-item img:hover {
    transform: scale(1.05);
}

.contenedor-video {
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.video-vertical {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.hero-section {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.video-fondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: -1;
}

.contenido {
    position: relative;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

