@charset "UTF-8";
/* CSS Document */

/* Estilos básicos para asegurar que el fondo cubra toda la pantalla */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.background {
    background-image: url('../img/bg-web-genmov.jpg'); /* Sustituye 'tu-foto.jpg' con el enlace a tu imagen de fondo */
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100%;
}

h1 {
	font-size: 22px;
	 color: #166D67; /* Color del titulo */
	text-transform: uppercase;
}

a {
	color: #333;
}

.foot {
	color: #333;
	font-size: 12px;
}

.sub {
    font-size: 18px; /* Tamaño del texto */
	color: #622053;
	font-weight: bold;
}

.content p {
    font-size: 18px; /* Tamaño del texto */
    margin: 0;
	color: #622053;
}

.izq {
	margin-top: 3%;
    padding: 20px;
    border-radius: 10px;
}

.der {
	margin-top: 15%;
    padding: 20px;
    border-radius: 10px;
}

.content {
    text-align: left;
    padding: 20px;
    border-radius: 10px;
}

.content img {
    width: 120px; /* Tamaño del logo, ajusta según necesites */
    margin-bottom: 20px;
}

.noview {
		display: none;
	}



.container {
	margin-top: 5%;
    display: flex;
    height: 48vh;
	margin-bottom: 30px;
}

.sidebar {
    padding: 10px;
}

.tab-button {
	display: block;
    width: 100%;
    margin-bottom: 4px;
    border: none;
    cursor: pointer;
    text-align: right;
}

.tab-content {
	width: 300px;
    display: none;
	margin: 1px;
}

.tab-content.active {
    display: block;
}


/* Responsive: ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .content p {
        font-size: 18px;
    }
    .content img {
        width: 80px;
    }
	.der {
		margin-top: 1%;
	}
		
	.container {
	margin-top: 2%;
		margin-bottom: 80px;
}

.sidebar {
    padding: 1px;
	
}
	
	.tab-content {
		width: 200px;
		margin: -10px;
}

	.der {
	margin-top: 5%;
    padding: 10px;
}

}


.rounded-buttonv {
    padding: 5px 10px;
	margin-bottom: 5px;
	margin-top: 5px;
    background-color: #166d67;
    color: white;
    border: none;
    font-size: 15px;
	font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.rounded-buttonv:hover {
	color: #166d67;
    background-color: #fff; /* Color de fondo al pasar el ratón */
}

.rounded-buttonb {
    padding: 5px 10px;
	margin-bottom: 5px;
	margin-top: 5px;
    background-color: #2e246c;
    color: #fff;
    border: none;
    font-size: 15px;
	font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.rounded-buttonb:hover {
	color: #2e246c;
    background-color: #fff; /* Color de fondo al pasar el ratón */
}

.rounded-buttong {
    padding: 5px 10px;
	margin-bottom: 5px;
	margin-top: 5px;
    background-color: #911e4e;
    color: #fff;
    border: none;
    font-size: 15px;
	font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.rounded-buttong:hover {
	color: #911e4e;
    background-color: #fff; /* Color de fondo al pasar el ratón */
}

.rounded-buttona {
    padding: 5px 10px;
	margin-bottom: 5px;
	margin-top: 5px;
    background-color: #c37224;
    color: #fff;
    border: none;
    font-size: 15px;
	font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.rounded-buttona:hover {
	color: #c37224;
    background-color: #fff; /* Color de fondo al pasar el ratón */
}

