/* ============================================
   LAYOUT POLÍTICAS - SKILLTRACK
   ============================================ */

/* Estructura específica para páginas de políticas */
html, body {
    height: 100%;
    margin: 0;
    overflow: hidden; /* Evita el scroll en el nivel más alto */
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Ocupa el 100% de la altura de la ventana */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Header y Footer no crecen y no se encogen */
.politicas-header, 
.politicas-footer {
    flex-shrink: 0;
}

/* El contenedor principal crece para ocupar el espacio restante */
.politicas-container {
    flex: 1 1 auto;
    overflow: hidden; /* Oculta el scroll y lo delega a los hijos */
}

/* ============================================
   HEADER POLÍTICAS - SKILLTRACK
   ============================================ */

.politicas-header {
    background: linear-gradient(135deg, #0b2239 0%, #1e3a8a 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.politicas-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.politicas-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.politicas-header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.politicas-header-logo {
    height: 35px;
    transition: transform 0.3s ease;
}

.politicas-header-logo:hover {
    transform: scale(1.05);
}

.politicas-header-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-volver {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-volver:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(108, 117, 125, 0.4);
    color: white;
    text-decoration: none;
}

/* ============================================
   CONTENIDO PRINCIPAL POLÍTICAS - SKILLTRACK
   ============================================ */

.politicas-main-content {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   FOOTER POLÍTICAS - SKILLTRACK
   ============================================ */

.politicas-footer {
    background: linear-gradient(135deg, #0b2239 0%, #1e3a8a 100%);
    color: white;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    margin-top: auto;
}

.politicas-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.politicas-footer-copyright {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 400;
}
