/* =============================================
   CAFÉ SOFT — Hoja de Estilos Principal
   Archivo: assets/css/style.css
   Descripción: Sistema de diseño completo.
                Estilo inspirado en nuevaescuela.edu.ar
                adaptado a la marca café soft.
   ============================================= */

/* ===========================================
   1. RESET Y BASE
   =========================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #111111;
    background: #e6e6e6;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

/* ===========================================
   2. TIPOGRAFÍA
   =========================================== */

h1 {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #111111;
}

h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #111111;
}

h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111111;
}

p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666666;
}

/* ===========================================
   3. LAYOUT
   =========================================== */

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

.section--gray {
    background: #e6e6e6;
}

.section--alt {
    background: #F9F9F9;
}

.section__header {
    margin-bottom: 3rem;
    max-width: 600px;
}

.section__title {
    margin-bottom: 1rem;
    position: relative;
}

.section__title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #8B7355;
    margin-top: 1.5rem;
}

.section__subtitle {
    color: #666666;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===========================================
   4. TOPBAR — Franja superior gris
   =========================================== */

.topbar {
    background: #f2f2f2;
    border-bottom: 1px solid #e0e0e0;
    height: 36px;
    display: flex;
    align-items: center;
    width: 100%;
}

.topbar__inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar__badge {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #888888;
}

.topbar__badge span {
    color: #8B7355;
}

.topbar__social {
    display: flex;
    align-items: center;
    gap: 2px;
}

.topbar__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    color: #999999;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.2s ease, background 0.2s ease;
}

.topbar__social a:hover {
    color: #111111;
    background: rgba(0, 0, 0, 0.06);
}

/* ===========================================
   5. COLORBAR — Franja cromática multicolor
   =========================================== */

.colorbar {
    height: 4px;
    width: 100%;
    background: linear-gradient(
        107deg,
        rgba(107, 141, 233, 1) 0% 24%,
        rgba(238, 92, 99, 1) 25% 49%,
        rgba(252, 197, 81, 1) 50% 74%,
        rgba(28, 255, 186, 1) 75% 100%
    );
}

/* ===========================================
   6. NAVEGACIÓN PRINCIPAL
   =========================================== */

.nav {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: #ffffff;
    border-top: 3px solid #8B7355;
    border-bottom: 3px solid #8B7355;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    padding: 0;
    width: 100%;
}

.nav.nav--scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
    height: 58px;
}

.nav__logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111111;
    text-decoration: none;
    text-transform: lowercase;
    transition: transform 0.25s ease;
}

.nav__logo:hover {
    transform: scale(1.03);
}

.nav__logo-dot {
    color: #8B7355;
}

.nav__right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.nav__link {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #333333;
    padding: 8px 14px;
    border-radius: 3px;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
    display: flex;
    align-items: center;
}

/* Línea animada bajo los links */
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: #8B7355;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
    border-radius: 2px;
}

.nav__link:hover {
    color: #111111;
    background: rgba(139, 115, 85, 0.1);
}

.nav__link:hover::after {
    transform: scaleX(1);
}

/* Botón CTA del nav */
.nav__cta {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff !important;
    background: #111111;
    padding: 8px 18px;
    border-radius: 3px;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav__cta:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
    color: #ffffff !important;
}

/* CTA mobile — oculto en desktop */
.nav__mobile-cta {
    display: none;
}

/* Hamburguesa — oculta en desktop */
.nav__hamburger {
    display: none;
    border: 1.5px solid rgba(0, 0, 0, 0.25);
    padding: 6px 9px;
    border-radius: 4px;
    background: none;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-direction: column;
    gap: 5px;
}

.nav__hamburger:hover {
    background: rgba(139, 115, 85, 0.15);
}

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #111111;
    transition: all 0.3s ease;
}

/* --- Navegación móvil --- */
@media (max-width: 991px) {
    .nav__hamburger {
        display: flex;
    }

    .nav__cta--desktop {
        display: none;
    }

    .nav__links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 2px solid #8B7355;
        flex-direction: column;
        padding: 12px 0 16px;
        z-index: 2999;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav__links.nav__links--open {
        display: flex;
    }

    .nav__link {
        width: 100%;
        padding: 11px 20px;
        border-radius: 0;
        border-left: 3px solid transparent;
    }

    .nav__link::after {
        display: none;
    }

    .nav__link:hover {
        color: #111111;
        background: rgba(139, 115, 85, 0.12);
        border-left-color: #8B7355;
    }

    .nav__mobile-cta {
        display: flex;
        justify-content: center;
        padding: 14px 20px 4px;
    }

    .nav__mobile-cta .nav__cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .topbar__badge {
        display: none;
    }
}

/* ===========================================
   7. BOTONES
   =========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: none;
    outline: none;
    text-decoration: none;
}

.btn--primary {
    background: #111111;
    color: #ffffff;
    border: 1px solid #111111;
}

.btn--primary:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
}

/* Botón acento verde (CTA principal) */
.btn--accent {
    background: #1cffba;
    color: #111111;
    border: 1px solid #1cffba;
    font-weight: 600;
}

.btn--accent:hover {
    background: #13c990;
    border-color: #13c990;
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: #111111;
    border: 1px solid #111111;
}

.btn--outline:hover {
    background: #111111;
    color: #ffffff;
}

/* Outline claro — para fondos oscuros */
.btn--outline-light {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn--small {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
}

.btn--danger {
    background: transparent;
    color: #DC3545;
    border: 1px solid #DC3545;
}

.btn--danger:hover {
    background: #DC3545;
    color: #ffffff;
}

/* ===========================================
   8. HERO — Fondo oscuro charcoal
   =========================================== */

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: #30343f;
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Efecto de brillo sutil */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 30% 50%,
        rgba(139, 115, 85, 0.15) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.hero__container {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero__label {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #8B7355;
    font-weight: 500;
    margin-bottom: 2rem;
    display: block;
}

.hero__title {
    color: #ffffff;
    margin-bottom: 2rem;
}

.hero__text {
    max-width: 550px;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===========================================
   9. BANDAS DE SECCIÓN — Headers oscuros
   =========================================== */

.section-band {
    width: 100%;
    padding: 18px 0;
    background: #30343f;
}

.section-band__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-band__icon {
    font-size: 1.5rem;
    line-height: 1;
}

.section-band__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8B7355;
}

/* ===========================================
   10. SERVICIOS — Grid estilo visor
   =========================================== */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.service-card {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: scale(1.02);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(48, 52, 63, 0.95) 80%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: all 0.5s ease;
}

.service-card__number {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    color: #8B7355;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.service-card__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.service-card__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.service-card:hover .service-card__text {
    max-height: 200px;
    opacity: 1;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================================
   11. PORTFOLIO — Filtros y Grid
   =========================================== */

.portfolio-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.portfolio-filter {
    padding: 0.5rem 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: none;
    border: 1px solid #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666666;
    text-decoration: none;
    border-radius: 3px;
}

.portfolio-filter:hover {
    border-color: #111111;
    color: #111111;
}

.portfolio-filter--active {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    display: block;
}

.portfolio-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-item__img {
    transform: scale(1.05);
}

.portfolio-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(48, 52, 63, 0.95) 80%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-item__overlay {
    opacity: 1;
}

.portfolio-item__category {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #8B7355;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.portfolio-item__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
}

.portfolio-link {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===========================================
   12. CONTACTO — Formulario
   =========================================== */

.contact {
    max-width: 650px;
    margin: 0 auto;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #111111;
    margin-bottom: 0.75rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    border: 1px solid #cccccc;
    background: #ffffff;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    color: #111111;
    border-radius: 3px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: #8B7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8.825L0.375 3.2l0.85-0.85L6 7.125l4.775-4.775 0.85 0.85z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

/* ===========================================
   13. FOOTER — Fondo negro
   =========================================== */

.footer {
    background: #000000;
    color: #ffffff;
    padding: 3rem 0;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer__brand {
    text-align: left;
}

.footer__logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: lowercase;
    display: block;
    margin-bottom: 0.25rem;
}

.footer__logo span {
    color: #8B7355;
}

.footer__tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer__info {
    text-align: center;
}

.footer__copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer__links {
    display: flex;
    gap: 1.5rem;
}

.footer__link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer__container {
        flex-direction: column;
        text-align: center;
    }

    .footer__brand {
        text-align: center;
    }

    .footer__links {
        justify-content: center;
    }
}

/* ===========================================
   14. ALERTAS Y MENSAJES
   =========================================== */

.alert {
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    border: 1px solid;
    border-radius: 3px;
}

.alert--success {
    background: #f0fdf4;
    border-color: #86efac;
    color: #166534;
}

.alert--error {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #991b1b;
}

/* ===========================================
   15. PANEL DE ADMINISTRACIÓN — LAYOUT
   =========================================== */

.admin-wrap {
    display: flex;
    min-height: 100vh;
    padding-top: 0;
}

/* --- Barra lateral oscura --- */
.admin-sidebar {
    width: 260px;
    background: #111111;
    color: #ffffff;
    padding: 2rem 0;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
}

.admin-sidebar__logo {
    padding: 0 2rem;
    margin-bottom: 3rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: lowercase;
}

.admin-sidebar__logo span {
    color: #8B7355;
}

.admin-sidebar__nav {
    list-style: none;
}

.admin-sidebar__link {
    display: block;
    padding: 0.85rem 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.admin-sidebar__link:hover,
.admin-sidebar__link--active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #8B7355;
}

/* --- Contenido principal del admin --- */
.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 2.5rem 3rem;
    background: #ffffff;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #EEEEEE;
}

.admin-header__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
}

/* --- Tabla del admin --- */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.admin-table th {
    text-align: left;
    padding: 1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666666;
    font-weight: 500;
    border-bottom: 2px solid #EEEEEE;
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid #EEEEEE;
    font-size: 0.9rem;
    color: #333333;
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: #F9F9F9;
}

.admin-table__img {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: 3px;
}

.admin-table__actions {
    display: flex;
    gap: 0.5rem;
}

/* --- Formulario del admin --- */
.admin-form {
    max-width: 700px;
}

.admin-form .form-group {
    margin-bottom: 1.5rem;
}

.admin-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .admin-form__row {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   16. LOGIN
   =========================================== */

.login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #30343f;
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 3rem;
    background: #ffffff;
    border: 1px solid #EEEEEE;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.login-card__logo {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
}

.login-card__logo span {
    color: #8B7355;
}

.login-card__subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 2.5rem;
}

/* ===========================================
   17. ADMIN — RESPONSIVE
   =========================================== */

@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
        position: fixed;
        z-index: 1000;
    }

    .admin-main {
        margin-left: 0;
        padding: 1.5rem;
    }
}

/* ===========================================
   18. PÁGINA DE PROYECTOS — Hero compacto
   =========================================== */

.page-hero {
    background: #30343f;
    padding: 4rem 0;
    text-align: center;
}

.page-hero__title {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.page-hero__subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* ===========================================
   19. UTILIDADES
   =========================================== */

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Animación de entrada --- */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
