@charset "utf-8";
/* CSS Document */

body {
    font-family: Arial, sans-serif;
}

header {
    background: #0d6efd;
    color: white;
    padding: 20px;
    text-align: center;
}

.card:hover {
    transform: scale(1.03);
    transition: 0.3s;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}
.video-banner {
      position: relative;
    width: 100%;
    height: 100vh; /* altura completa */
    overflow: hidden;
}

.video-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.4); /* oscurece el video */
}

.video-banner h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
}
.info-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.info-box:hover {
    transform: translateY(-10px);
}
/* Título */
h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

/* Etiqueta con esquina cortada */
.etiqueta {
    display: inline-block;
    background: #0d6efd;
    color: white;
    padding: 10px 25px;
    font-weight: bold;
    position: relative;
    margin-top: 10px;
	font-size: 20px;
}

/* Esquina cortada */
.etiqueta::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-top: 20px solid white;  /* color del fondo */
    border-left: 20px solid transparent;
}

/* Galería */
.carousel-item img {
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}