/* Reset básico y variables */
:root {
    --primary-color: #38a0a6; /* Color solicitado */
    --text-color: #333;
    --bg-color: #f4f4f9;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header y Logo */
header {
    text-align: center;
    padding: 40px 20px 20px;
}

.logo-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%; /* Máscara circular */
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 4px solid var(--primary-color);
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra el círculo sin deformarse */
}

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
}

/* Contenedor Principal */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

/* Estilos de los Botones */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    padding: 15px 30px;
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px; /* Bordes redondeados */
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Modo Hover (Moto Hide) solicitado */
.btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(56, 160, 166, 0.4);
}

/* Footer */
footer {
    background-color: var(--primary-color); /* Color solicitado para el footer */
    color: var(--white);
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

/* Estilos para el Modal (Reproductor de Video) */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8); /* Fondo oscuro semitransparente */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
    text-align: center;
}

.modal-content h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}