html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family:"Inter", sans-serif;
}

/* ---- CARROUSEL ---- */
.content {
	flex: 1;
}

.carrousel {
	max-width: 100%;
	position: relative;
	margin: auto;
	overflow: hidden;
}

.fotoCarrousel {
	display: none;
	width: 100%;
	height: 100vh;
	object-fit: cover;
	background-color: black;
}

.fotoCarrousel img {
    filter: opacity(0.6);
}

.textoCarrousel {
	position: absolute;
	top: 50%;
    right: 4%;
    transform: translateY(-50%);
	color:rgb(224, 207, 207);
	font-family: 'Dancing script', capitalize;
	font-size: 3rem;
	font-weight: 400;
	animation: deslizarIzquierda 3s ease-in-out forwards;
	z-index: 10;
    text-shadow: 2px 2px 2px rgba(193, 103, 142, 0.816);
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

.boton-paises-contenedor {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-in-out;
    position: absolute;
    bottom: 40%; 
    right: 4%; 
    z-index: 100;
}

.boton-paises-contenedor.show {
    opacity: 1; 
    pointer-events: auto;
}

.boton-paises {
    border: none;
    border-radius: 5px;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: bold;
    color: black !important;
}

@keyframes deslizarIzquierda {
    0% {
        opacity: 0;
        transform: translate(-100%, -50%);
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(0, -50%);
    }
}

.siguiente,
.anterior {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}

.anterior {
	right: 0;
	border-radius: 3px 0 0 3px;
}

.anterior:hover,
.siguiente:hover {
	background-color: rgba(0, 0, 0, 0.8);
}