/* /assets/css/main.css */

/* --- Reseteo Básico y Estilos Globales --- */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* --- Estructura Compartida (Header y Footer) --- */
.main-header, .main-footer {
    flex-shrink: 0; /* Evita que se encojan */
}

.main-content {
    flex-grow: 1; /* Ocupa el espacio restante */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

/* --- Encabezado --- */
.main-header {
    background-color: #ffffff;
    padding: 20px 50px;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo-container {
    display: flex;
    align-items: center;
}
.logo-img {
    height: 50px;
    margin-right: 20px;
}
.logo-text {
    font-weight: bold;
    font-size: 1.4rem;
    color: #555;
    letter-spacing: 0.8px;
}
.main-nav a {
    text-decoration: none;
    color: #666;
    margin-left: 25px;
    font-size: 1.05rem;
    transition: color 0.3s ease, transform 0.2s ease;
}
.main-nav a:hover {
    color: #000;
    transform: translateY(-2px);
}

/* --- Pie de Página --- */
.main-footer {
    background-color: #343a40;
    color: #f8f9fa;
    text-align: center;
    padding: 25px;
    font-size: 0.9rem;
}