:root {
    --color-quassi: #f05f08;
    --color-gris: rgb(128, 130, 133);
}

html,
body {
    min-height: 100vh;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

* {
    box-sizing: border-box;
}

/* ENCABEZADO */
.escudo-desktop {
    margin: 1rem;
}

.escudo-movil {
    margin: 0.5rem;
}

.titulo {
    font-size: 1.75rem;
    font-weight: 700;
}

.subtitulo {
    font-size: 1rem;
    font-weight: 600;
}

.titulo-seccion {
    font-size: 2rem;
    font-weight: 700;
}

/* CONTENIDO */
main {
    min-height: calc(100vh - 200px);
    padding: 2rem 1rem;
}

.contenido {
    padding-top: 2rem;
}

/* PANELES */
.panel {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    border-bottom: 8px solid var(--color-quassi);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.panel:hover {
    background: #fff3e0;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.panel h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.panel p {
    font-size: 0.9rem;
}

/* PIE */
footer {
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* COLORES */
.bg-quassi {
    background-color: var(--color-quassi) !important;
}

.text-quassi {
    color: var(--color-quassi) !important;
}

/* NAVBAR */
.navbar-dark .navbar-nav .nav-link {
    color: white;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
    background-color: #e05507;
    border-radius: 8px;
}

/* RESPONSIVIDAD */
@media screen and (max-width: 767px) {
    .titulo {
        font-size: 1.25rem;
    }

    .subtitulo {
        font-size: 0.85rem;
    }

    .escudo-desktop {
        display: none;
    }

    .escudo-movil {
        display: block !important;
    }

    .navbar-nav {
        text-align: center;
    }

    .panel {
        margin-bottom: 1.5rem;
    }
}

@media screen and (min-width: 768px) {
    .row {
        justify-content: center;
    }
}