/* ==============================
    VARIABLES GLOBALES
============================== */
:root {
  /* ===== COLORES DE FONDO ===== */
--fondo-principal: #1e1e1e;
--fondo-secundario: #2c2c2c;
--fondo-tarjeta: #292929;
--fondo-claro: #3a3a3a;

  /* ===== COLORES DE TEXTO ===== */
--texto-principal: #f0f0f0;
--texto-secundario: #a0a0a0;
--texto-claro: #ffffff;
--texto-destacado: #00c37e;

  /* ===== COLORES DE BORDES Y SOMBRAS ===== */
--borde-suave: rgba(255, 255, 255, 0.05);
--sombra-oscura: rgba(0, 0, 0, 0.4);
--sombra-clara: rgba(255, 255, 255, 0.05);

  /* ===== COLORES DE ACENTO ===== */
--acento: #00c37e;
--acento-hover: #00a86b;
--acento-oscuro: #008f5c;

  /* ===== COLORES PARA ESTADOS ===== */
--exito: #28a745;
--error: #dc3545;
--advertencia: #ffc107;
--informacion: #17a2b8;
}
/* ==============================
    BODY Y ESTRUCTURA GENERAL
============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--fondo-principal);
    color: var(--texto-principal);
    overflow-x: hidden;

}





/* ==============================
   FOOTER COMÚN
============================== */
footer {
    background-color: var(--fondo-tarjeta);
    color: var(--texto-secundario);
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 0;
}

.footer-links li a {
    color: var(--texto-secundario);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: var(--acento);
}


/* ==============================
   BOTONES GENERALES
============================== */
input[type="submit"] {
    background-color: var(--acento);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: var(--acento-hover);
}

.no-scroll{
    overflow: hidden;
}


