﻿:root {
    --yellow: #fedb55;
    --blue: #035e82;
    --red: #ae1c0f;
    --cyan: #36bdd2;
    --cyan-dark: #05779b;
    --orange: #d65a2a;
    --orange-dark: #ae1c0f;
    --ink: #12323f;
    --soft: #f8fbfc;
    --line: #c3d8e3;
    --max: 1224px;
    --radius: 6px;
    --control-height: 44px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    line-height: 1.55;
}

a {
    color: var(--blue);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 0;
    border-radius: var(--radius);
    background: var(--cyan);
    color: #fff;
    font: inherit;
    font-weight: 400;
    line-height: 1.1;
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.btn:hover,
.btn:focus-visible {
    background: var(--cyan-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(3, 94, 130, .18);
}

.site-header {
    background: var(--yellow);
    position: sticky;
    top: 0;
    z-index: 20;
}

.site-header__inner {
    max-width: var(--max);
    margin: 0 auto;
    min-height: 186px;
    display: flex;
    align-items: center;
    gap: 56px;
    padding: 12px 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-logo img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.site-mobile-title {
    display: none;
    text-decoration: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.site-nav a {
    color: var(--blue);
    text-decoration: none;
    font-size: 17px;
    line-height: 1;
    padding: 8px 0;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-menu-button {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(3, 94, 130, .25);
    background: rgba(255, 255, 255, .38);
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.site-menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--blue);
}

.site-main {
    min-height: 44vh;
}

.section {
    padding: 56px 24px;
}

.section--tight {
    padding-bottom: 32px;
}

.section__inner {
    max-width: var(--max);
    margin: 0 auto;
}

.hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(3, 94, 130, .12), rgba(3, 94, 130, .12)), #eef8fb;
}

.hero__content {
    max-width: 760px;
}

.hero h1,
.page-title {
    margin: 0 0 22px;
    color: var(--red);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.08;
}

.hero p,
.lead {
    font-size: 20px;
    max-width: 900px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    background: #fff;
}

.card h2,
.card h3,
.section h2 {
    color: var(--blue);
    margin-top: 0;
}

.not-found {
    min-height: 460px;
    display: flex;
    align-items: center;
    text-align: center;
}

.not-found__inner {
    max-width: 760px;
}

.not-found__code {
    margin: 0 0 8px;
    color: rgba(3, 94, 130, .16);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(82px, 15vw, 170px);
    font-weight: 700;
    line-height: .82;
}

.not-found .lead {
    margin: 0 auto 28px;
}

.donation-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.donation-list strong {
    color: var(--blue);
}

.values {
    columns: 3;
    list-style-position: inside;
    padding-left: 0;
}

.site-footer {
    background: var(--yellow);
    color: var(--blue);
    padding: 42px 24px 32px;
}

.site-footer__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 46px;
    align-items: start;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 16px;
}

.site-footer p {
    margin: 0 0 12px;
}

.footer-brand__bottom {
    display: grid;
    gap: 6px;
    align-items: start;
    margin-top: 20px;
}

.footer-brand__logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand__logos img {
    width: 52px;
    height: 52px;
}

.footer-brand__logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-brand__quote {
    max-width: 340px;
    font-size: 13px;
    line-height: 1.32;
}

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgb(3, 94, 130);
    color: rgb(254, 219, 85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.footer-social svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-social:hover {
    background: rgb(174, 28, 15);
    color: #fff;
    text-decoration: none;
}

.legal-docs-module {
    width: min(960px, 100%);
    margin: 36px auto 0;
}

.legal-year {
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
    margin-bottom: 22px;
}

.legal-year summary {
    cursor: pointer;
    padding: 14px 18px;
    color: var(--blue);
    font-weight: 700;
}

.legal-year__documents {
    padding: 0 18px 18px;
    display: grid;
    gap: 10px;
}

.legal-year[open] .legal-year__documents {
    animation: legalYearFadeIn .62s ease both;
}

.legal-year.is-closing .legal-year__documents {
    animation: legalYearFadeOut .48s ease both;
}

@keyframes legalYearFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes legalYearFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-6px);
    }
}

.legal-document {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    border-top: 1px solid #e3eef3;
    padding-top: 10px;
}

.legal-document > span:first-child {
    min-width: 0;
}

.legal-document__info {
    align-items: baseline;
    display: inline-flex;
    flex: 1 1 auto;
    gap: 10px;
    min-width: 0;
}

.legal-document__title {
    color: rgb(3, 94, 130);
    min-width: 0;
    text-decoration: none;
}

.legal-document__title:hover {
    text-decoration: underline;
}

.legal-document__separator,
.legal-document__size {
    color: #5f7280;
    flex: 0 0 auto;
}

.legal-document__size {
    font-size: 0.86em;
    white-space: nowrap;
}

.legal-document__type {
    flex: 0 0 auto;
    display: inline-flex;
    width: 32px;
    height: 32px;
    color: rgb(3, 94, 130);
}

.legal-document__type svg {
    display: block;
    width: 100%;
    height: 100%;
}

.legal-file-icon__page,
.legal-file-icon__fold {
    fill: #fff;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linejoin: round;
}

.legal-file-icon__badge {
    stroke: rgba(0, 0, 0, .08);
    stroke-width: 1;
}

.legal-document__type text {
    fill: #fff;
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: .2px;
}

@media (max-width: 800px) {
    .site-header__inner {
        min-height: 91px;
        padding: 14px 16px;
        gap: 18px;
    }

    .site-logo img {
        width: 64px;
        height: 64px;
    }

    .site-menu-button {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--yellow);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-top: 1px solid rgba(3, 94, 130, .15);
        box-shadow: 0 14px 22px rgba(0, 0, 0, .08);
    }

    .menu-open .site-nav {
        display: flex;
    }

    .menu-open .site-nav a {
        animation: mobileMenuFade .34s ease both;
    }

    .menu-open .site-nav a:nth-child(2) {
        animation-delay: .05s;
    }

    .menu-open .site-nav a:nth-child(3) {
        animation-delay: .1s;
    }

    .menu-open .site-nav a:nth-child(4) {
        animation-delay: .15s;
    }

    .site-nav a {
        padding: 16px 24px;
        border-bottom: 1px solid rgba(3, 94, 130, .12);
    }

    .section {
        padding: 38px 18px;
    }

    .hero {
        min-height: 420px;
    }

    .grid,
    .grid--two,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .values {
        columns: 1;
    }

    .legal-document {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .legal-document__info {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }
}

/* Responsive hardening */
body {
    overflow-x: hidden;
}

.section__inner,
.hero__content,
.site-footer__inner {
    width: 100%;
}

.page-title,
.hero h1,
.lead,
.site-footer p,
.card p,
.legal-document span {
    overflow-wrap: anywhere;
}

@media (max-width: 800px) {
    .site-header__inner {
        justify-content: space-between;
    }

    .site-menu-button {
        display: inline-flex !important;
        flex: 0 0 44px;
        border: 2px solid var(--blue);
        background: rgba(255, 255, 255, .72);
    }

    .page-title,
    .hero h1 {
        font-size: 32px;
        line-height: 1.12;
    }

    .lead {
        font-size: 18px;
    }
}

/* Mobile overflow final guard */
@media (max-width: 800px) {
    html,
    body,
    .site-main,
    .section,
    .site-footer {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    * {
        min-width: 0;
    }

    .site-header__inner {
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
    }

    .site-menu-button {
        margin-left: 18px;
        margin-right: 0;
    }

    .site-nav {
        width: 100%;
        max-width: 100%;
    }

    .section__inner,
    .hero__content,
    .site-footer__inner,
    .card,
    .legal-docs-module,
    .legal-year {
        max-width: 100%;
    }

    .site-footer p,
    .lead,
    .card p,
    .legal-document,
    .legal-document span {
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
    }
}

/* Restore original visual system */
html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
}

@keyframes mobileMenuFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-up {
    animation: revealUp .9s ease-out both;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-up {
        animation: none;
    }

    .image-lightbox,
    .image-lightbox img,
    .menu-open .site-nav a {
        transition: none;
        animation: none;
    }
}

.site-header {
    margin-top: 0;
}

.site-header__inner {
    min-height: 186px;
}

.site-nav a,
.card h2,
.card h3,
.section h2,
.site-footer h2,
.site-footer h3,
.legal-year summary {
    font-family: Oswald, Ubuntu, Arial, sans-serif;
}

.hero h1,
.page-title {
    font-family: Lobster, Georgia, 'Times New Roman', serif;
    font-weight: 400;
}

.site-main {
    min-height: 0;
}

.section:last-child,
.section--tight:last-child {
    padding-bottom: 34px;
}

.hero {
    min-height: 500px;
    background: #d9edf2;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    align-items: center;
    gap: 44px;
}

.hero__image,
.split-media img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 16px 34px rgba(3, 94, 130, .16);
}

.hero__image {
    height: 340px;
}

.split-media {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
    align-items: center;
    gap: 38px;
}

.split-media--reverse {
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1fr);
}

.split-media img {
    height: 320px;
}

.card--image img {
    width: 132px;
    height: auto;
    display: block;
    margin-bottom: 18px;
}

.footer-contact__item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.footer-contact__item img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.footer-contact__link {
    color: inherit;
    text-decoration: none;
}

.footer-contact__link:hover,
.footer-contact__link:focus-visible {
    color: rgb(174, 28, 15);
    text-decoration: underline;
}

@media (max-width: 800px) {
    .site-header__inner {
        min-height: 91px;
    }

    .hero {
        min-height: auto;
    }

    .hero__grid,
    .split-media,
    .split-media--reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero__image,
    .split-media img {
        height: 220px;
    }

    .section:last-child,
    .section--tight:last-child {
        padding-bottom: 24px;
    }
}

/* Legal page spacing */
.legal-page .section {
    padding-top: 40px;
    padding-bottom: 20px;
}

.legal-page .legal-docs-module {
    margin-top: 30px;
    margin-bottom: 0;
}

.legal-page .legal-year:last-child {
    margin-bottom: 0;
}

.legal-page .site-main {
    min-height: 0;
}

@media (max-width: 800px) {
    .legal-page .section {
        padding-top: 34px;
        padding-bottom: 18px;
    }

    .legal-page .legal-docs-module {
        margin-top: 26px;
    }
}

/* Mobile menu alignment fix */
@media (max-width: 800px) {
    .site-header__inner {
        justify-content: space-between !important;
        gap: 16px;
    }

    .site-menu-button {
        margin-left: auto !important;
        margin-right: 0 !important;
        border: 2px solid var(--blue) !important;
        background: #ffffff !important;
        color: var(--blue) !important;
        box-shadow: 0 2px 6px rgba(3, 94, 130, .18);
    }

    .site-menu-button span {
        background: var(--blue) !important;
        height: 3px;
        border-radius: 999px;
    }
}

/* Exact content image helpers */
.image-stack {
    display: grid;
    gap: 18px;
}

.image-stack img,
.card__photo {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(3, 94, 130, .14);
}

.image-stack img {
    height: 220px;
}

.card__photo {
    height: 240px;
    margin-top: 18px;
}

.bonus-grid {
    margin-top: 22px;
}

.objectives-list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 12px;
}

@media (max-width: 800px) {
    .image-stack img,
    .card__photo {
        height: 210px;
    }
}

/* Alignment with original Hostinger proportions */
.site-nav a {
    font-family: Ubuntu, Arial, Helvetica, sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
}

.hero--text-only {
    min-height: 500px;
}

.hero--text-only .hero__content {
    max-width: 760px;
}

.original-flow {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 42px;
    align-items: start;
}

.original-flow--reverse {
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
}

.original-flow--bonus {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
}

.original-flow__text {
    max-width: 720px;
}

.original-flow__media {
    display: grid;
    gap: 18px;
}

.original-flow__media img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: none;
}

.original-flow__media--single img {
    height: 340px;
}

.section--intro {
    padding-top: 54px;
}

@media (max-width: 800px) {
    .site-nav a {
        font-size: 17px;
    }

    .hero--text-only {
        min-height: auto;
    }

    .original-flow,
    .original-flow--reverse,
    .original-flow--bonus {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .original-flow__media img,
    .original-flow__media--single img {
        height: 220px;
    }
}

/* Nosotros page: match original grouping */
.about-page .about-mission {
    background: #fff;
    padding-top: 64px;
    padding-bottom: 30px;
}

.about-page .about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 480px;
    gap: 112px;
    align-items: center;
}

.about-page .about-grid--mission {
    max-width: 1240px;
}

.about-page .about-grid--vision {
    grid-template-columns: 480px minmax(0, 1fr);
    gap: 138px;
    align-items: center;
}

.about-page .about-copy {
    max-width: 520px;
}

.about-page .about-copy p {
    margin: 0 0 14px;
    font-size: 17px;
    line-height: 1.45;
}

.about-page .page-title,
.about-page .about-copy h2,
.about-page .about-objectives h2,
.about-page .about-values h2 {
    font-family: Lobster, Georgia, 'Times New Roman', serif;
    font-weight: 400;
}

.about-page .page-title {
    margin-bottom: 26px;
    font-size: 48px;
    color: var(--red);
}

.about-page .about-copy h2,
.about-page .about-objectives h2,
.about-page .about-values h2 {
    margin: 0 0 26px;
    font-size: 44px;
    color: var(--blue);
}

.about-page .about-mission .about-copy h1 {
    color: var(--red);
}

.about-page .about-image {
    margin: 0;
}

.about-page .about-image img {
    display: block;
    width: 100%;
    height: 302px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: none;
}

.about-page .about-vision-band {
    background: #a8d9d6;
    padding-top: 40px;
    padding-bottom: 40px;
}

.about-page .about-vision-band .about-image img {
    height: 288px;
}

.about-page .about-objectives {
    background: #fff;
    padding-top: 56px;
    padding-bottom: 34px;
}

.about-page .about-objectives__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.about-page .about-objectives__grid p {
    margin: 0;
}

.about-page .about-values {
    background: #fff;
    padding-top: 24px;
}

@media (max-width: 900px) {
    .about-page .about-mission {
        padding-top: 38px;
        padding-bottom: 28px;
    }

    .about-page .about-grid,
    .about-page .about-grid--vision {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-page .about-grid--vision .about-image {
        order: 1;
    }

    .about-page .about-grid--vision .about-copy {
        order: 2;
    }

    .about-page .about-copy {
        max-width: none;
    }

    .about-page .page-title,
    .about-page .about-copy h2,
    .about-page .about-objectives h2,
    .about-page .about-values h2 {
        font-size: 34px;
    }

    .about-page .about-image img,
    .about-page .about-vision-band .about-image img {
        height: 230px;
    }

    .about-page .about-objectives__grid {
        grid-template-columns: 1fr;
    }
}

/* Footer and contact: closer to original */
.site-footer h2,
.site-footer h3 {
    font-family: Ubuntu, Arial, Helvetica, sans-serif !important;
    font-weight: 700;
    letter-spacing: 0;
}

.site-footer h2 {
    font-size: 26px;
    line-height: 1.15;
}

.site-footer h3 {
    font-size: 15px;
    line-height: 1.2;
}

.site-footer p,
.site-footer a,
.site-footer span {
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.35;
}

.site-footer h2 {
    font-size: 24px;
}

.site-footer h3 {
    font-size: 13px;
}

.contact-page .contact-section {
    padding-top: 86px;
    padding-bottom: 224px;
}

.contact-page .section__inner {
    max-width: 1224px;
}

.contact-page .contact-title {
    color: var(--blue);
    font-size: 43px;
    margin-bottom: 18px;
}

.contact-page .contact-lead {
    margin: 0 0 24px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 548px 582px;
    gap: 48px;
    align-items: stretch;
}

.contact-form {
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    padding: 32px 16px 16px;
    display: grid;
    gap: 12px;
}

.contact-form label {
    font-size: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #c9c9c9;
    border-radius: 4px;
    padding: 10px 12px;
    font: inherit;
    background: #fff;
}

.contact-field {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(3, 94, 130, .28);
    border-radius: 4px;
    display: grid;
    gap: 12px;
    grid-template-columns: 18px minmax(0, 1fr);
    min-height: 44px;
    padding: 0 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-field__icon {
    width: 18px;
    height: 18px;
    color: rgb(3, 94, 130);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    place-self: center;
}

.contact-field__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

.contact-field input,
.contact-field textarea {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
}

.contact-field input {
    height: 44px;
    line-height: 44px;
    min-height: 44px;
    padding-bottom: 0;
    padding-top: 0;
}

.contact-field textarea {
    line-height: 1.42;
    padding-top: 13px;
}

.contact-field--textarea {
    align-items: start;
    min-height: 160px;
}

.contact-field--textarea .contact-field__icon {
    margin-top: 14px;
    place-self: start center;
}

.contact-field input:focus,
.contact-field textarea:focus {
    box-shadow: none;
    outline: none;
}

.contact-field:focus-within {
    border-color: rgb(3, 94, 130);
    box-shadow: 0 0 0 3px rgba(168, 218, 220, .55);
}

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

.contact-form button {
    border: 0;
    border-radius: 4px;
    background: #cfcfcf;
    color: #fff;
    padding: 12px 18px;
    font: inherit;
    cursor: pointer;
    transition: background-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
    background: rgb(3, 94, 130);
    box-shadow: 0 10px 22px rgba(3, 94, 130, .22);
    transform: translateY(-2px);
}

.contact-form button:disabled {
    background: #d9e4ea;
    color: #6c7f89;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 1;
    transform: none;
}

.contact-form button:disabled:hover,
.contact-form button:disabled:focus-visible {
    background: #d9e4ea;
    box-shadow: none;
    transform: none;
}

.contact-form button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(3, 94, 130, .18);
}

.contact-alert {
    align-items: center;
    border-radius: 6px;
    display: flex;
    font-size: 15px;
    line-height: 1.25;
    margin-top: 10px;
    min-height: 54px;
    padding: 10px 14px;
}

.contact-alert p {
    margin: 0;
}

.contact-alert p + p {
    margin-top: 6px;
}

.contact-alert--success {
    border: 1px solid rgba(3, 94, 130, .28);
    background: rgba(168, 218, 220, .45);
    color: rgb(3, 94, 130);
}

.contact-alert--error {
    border: 1px solid rgba(174, 28, 15, .28);
    background: rgba(174, 28, 15, .08);
    color: rgb(174, 28, 15);
}

.contact-alert code {
    font-family: Consolas, Monaco, monospace;
}

.contact-form .g-recaptcha {
    min-height: 78px;
}

.contact-location h2 {
    margin: 0 0 28px;
    font-family: Lobster, Georgia, 'Times New Roman', serif;
    color: var(--red);
    font-size: 48px;
    font-weight: 400;
}

.contact-location {
    display: flex;
    flex-direction: column;
}

.contact-map {
    flex: 1 1 auto;
    min-height: 520px;
    background: #eaf5f6;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(3, 94, 130, .12);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
    inset: 0;
}

.contact-map a {
    position: absolute;
    right: 14px;
    bottom: 14px;
    background: #fff;
    border: 1px solid rgba(3, 94, 130, .18);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
    padding: 9px 14px;
    text-decoration: none;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.contact-map a:hover,
.contact-map a:focus-visible {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px);
}

.contact-location p {
    margin: 0 0 12px;
}

@media (max-width: 900px) {
    .contact-page .contact-section {
        padding-top: 42px;
        padding-bottom: 44px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: start;
    }

    .contact-page .contact-title {
        font-size: 34px;
    }

    .contact-map {
        flex: none;
        height: 360px;
        min-height: 320px;
    }
}

/* Final contact spacing tune */
.contact-page .contact-section {
    padding-bottom: 104px;
}

@media (max-width: 900px) {
    .contact-page .contact-section {
        padding-bottom: 36px;
    }
}

/* Home page: Hostinger-style section flow */
.home-page {
    background: #fff;
}

.home-page .site-header {
    background: rgb(254, 219, 85);
}

.home-page .site-header__inner {
    max-width: 1240px;
    min-height: 186px;
    padding: 13px 16px;
    gap: 64px;
}

.home-page .site-logo img {
    width: 160px;
    height: 160px;
}

.home-page .site-nav {
    gap: 37px;
}

.home-page .site-nav a {
    color: rgb(3, 94, 130);
    font-family: Ubuntu, Arial, Helvetica, sans-serif !important;
    font-size: 16px;
    line-height: 1.3;
}

.home-wrap {
    width: min(1224px, calc(100% - 32px));
    margin: 0 auto;
}

.home-slogan {
    min-height: 99px;
    padding: 16px 0;
    display: flex;
    align-items: center;
    background: rgba(168, 218, 220, .55);
}

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

.home-slogan h1 {
    max-width: none;
    margin: 0 auto;
    color: #071018;
    font-family: Oswald, Ubuntu, Arial, sans-serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.25;
}

.home-slogan h1 span {
    color: rgb(174, 28, 15);
}

.home-intro {
    padding: 42px 0 34px;
}

.home-intro__grid {
    display: grid;
    grid-template-columns: 373px minmax(0, 1fr);
    gap: 78px;
    align-items: start;
}

.home-intro__summary {
    grid-column: 1 / -1;
}

.home-intro__summary p {
    margin: 0;
    color: #071018;
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.42;
}

.home-intro__lead p {
    margin: 0;
    color: rgb(3, 94, 130);
    font-family: Oswald, Ubuntu, Arial, sans-serif;
    font-size: 31px;
    line-height: 1.2;
}

.home-intro__copy,
.home-object__text,
.home-help__text,
.home-bonus {
    color: rgb(3, 94, 130);
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.42;
}

.home-intro__copy p,
.home-object__text p,
.home-help p,
.home-bonus p {
    margin: 0 0 16px;
}

.home-icon {
    display: inline-block;
    margin-right: 4px;
    color: rgb(174, 28, 15);
}

.home-object {
    padding: 24px 0 36px;
}

.home-object__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 580px);
    gap: 52px;
    align-items: center;
}

.home-object__media {
    padding-top: 36px;
}

.home-object__media img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.js-lightbox {
    cursor: zoom-in;
}

.image-lightbox {
    align-items: flex-start;
    background: rgba(0, 0, 0, .82);
    display: flex;
    inset: 0;
    justify-content: center;
    overflow-y: auto;
    padding: 24px;
    position: fixed;
    opacity: 0;
    overscroll-behavior: contain;
    pointer-events: none;
    transition: opacity .28s ease;
    z-index: 100;
}

.image-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.image-lightbox__figure {
    margin: auto 0;
    max-width: min(1120px, 100%);
}

.image-lightbox img {
    display: block;
    width: auto;
    max-width: min(1120px, 100%);
    max-height: none;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
    opacity: 0;
    transform: translateY(18px) scale(.96);
    transition: opacity .32s ease, transform .32s ease;
}

.image-lightbox.is-open img {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.image-lightbox__caption {
    margin-top: 12px;
    color: #fff;
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
}

body.lightbox-open {
    overflow: hidden;
}

.image-lightbox__close {
    align-items: center;
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(0, 0, 0, .25);
    color: #fff;
    display: inline-flex;
    font-size: 0;
    line-height: 1;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

.image-lightbox__close::before,
.image-lightbox__close::after {
    background: currentColor;
    border-radius: 999px;
    content: "";
    height: 2px;
    position: absolute;
    width: 16px;
}

.image-lightbox__close::before {
    transform: rotate(45deg);
}

.image-lightbox__close::after {
    transform: rotate(-45deg);
}

.home-object h2,
.home-help h2,
.home-bonus h2 {
    margin: 0 0 24px;
    color: rgb(174, 28, 15);
    font-family: Lobster, Georgia, 'Times New Roman', serif;
    font-size: 31px;
    font-weight: 400;
    line-height: 1.25;
}

.home-object h2 {
    color: rgb(3, 94, 130);
    font-size: 44px;
}

.home-object__text p {
    color: #071018;
}

.home-programs {
    padding: 16px 0 42px;
}

.home-programs__grid {
    display: grid;
    grid-template-columns: minmax(420px, 580px) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}

.home-programs__media img {
    width: 100%;
    height: 325px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.home-programs__text {
    color: #071018;
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.42;
}

.home-programs__text p {
    margin: 0 0 14px;
}

.home-help {
    padding: 24px 0 44px;
}

.home-help__grid {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(420px, 580px);
    gap: 54px;
    align-items: center;
}

.home-help h3,
.home-bonus h3 {
    margin: 0 0 12px;
    color: rgb(3, 94, 130);
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.home-help h2 {
    color: rgb(174, 28, 15);
    font-size: 44px;
}

.home-help h3:first-of-type {
    color: rgb(174, 28, 15);
}

.home-help__text {
    color: #071018;
}

.home-help__text p {
    margin-bottom: 16px;
}

.home-help ul {
    margin: 0 0 18px 20px;
    padding: 0;
}

.home-help li {
    margin: 0 0 9px;
}

.home-help__media img {
    width: 100%;
    height: 386px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.home-bonus {
    background: rgb(168, 218, 220);
    padding: 40px 0 78px;
}

.home-bonus__inner {
    display: grid;
    gap: 32px;
}

.home-bonus__grid {
    display: grid;
    grid-template-columns: minmax(0, 490px) minmax(0, 440px);
    gap: 76px;
    align-items: start;
    justify-content: center;
}

.home-bonus__logo {
    display: flex;
    justify-content: center;
}

.home-bonus__logo img {
    width: 308px;
    height: auto;
    display: block;
    background: #fff;
}

.home-bonus__intro {
    padding-top: 44px;
    color: #071018;
    text-align: center;
}

.home-bonus__intro p {
    margin-bottom: 18px;
}

.home-bonus__phone {
    color: rgb(3, 94, 130);
    font-size: 21px;
    line-height: 1.35;
}

.home-bonus__content {
    color: #4f5357;
}

.home-bonus__content h2 {
    margin-bottom: 36px;
    color: rgb(3, 94, 130);
    font-size: 31px;
    text-align: center;
}

.home-bonus__levels {
    display: flex;
    justify-content: center;
    gap: 34px;
    margin-bottom: 26px;
}

.home-bonus__level {
    min-width: 112px;
    padding: 6px 18px 7px;
    color: #071018;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 8px 16px rgba(3, 94, 130, .12);
    transform: translateY(0);
    transition: opacity .22s ease, box-shadow .22s ease, transform .22s ease;
}

.home-bonus__level:hover {
    opacity: .86;
    box-shadow: 0 10px 20px rgba(3, 94, 130, .16);
    transform: translateY(-1px);
}

.home-bonus__level h3 {
    margin: 0;
    color: inherit;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 700;
}

.home-bonus__level p {
    margin: 4px 0 0;
    font-size: 16px;
    line-height: 1.1;
}

.home-bonus__level--green {
    background: #76c63a;
}

.home-bonus__level--silver {
    background: #eeeeee;
}

.home-bonus__level--gold {
    background: #d8aa00;
}

@media (max-width: 900px) {
    .home-page .site-header__inner {
        min-height: 91px;
        padding: 18px 16px;
        gap: 16px;
    }

    .home-page .site-logo img {
        width: 55px;
        height: 55px;
    }

    .home-page .site-nav {
        gap: 0;
    }

    .home-wrap {
        width: calc(100% - 32px);
    }

    .home-slogan {
        min-height: 137px;
        padding: 16px 0;
    }

    .home-slogan h1 {
        font-size: 24px;
    }

    .home-intro,
    .home-object,
    .home-help,
    .home-bonus {
        padding: 32px 0;
    }

    .home-intro__grid,
    .home-object__grid,
    .home-programs__grid,
    .home-help__grid,
    .home-bonus__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-intro__lead p {
        font-size: 28px;
    }

    .home-object__media {
        padding-top: 0;
        order: 2;
    }

    .home-object__text {
        order: 1;
    }

    .home-object__media img,
    .home-programs__media img,
    .home-help__media img {
        height: 220px;
    }

    .home-bonus__logo,
    .home-bonus__levels {
        padding-top: 0;
    }

    .home-bonus {
        padding: 34px 0 48px;
    }

    .home-bonus__grid {
        gap: 28px;
    }

    .home-bonus__logo img {
        width: min(308px, 100%);
    }

    .home-bonus__intro {
        padding-top: 0;
    }

    .home-bonus__levels {
        flex-wrap: wrap;
        gap: 12px;
    }

    .home-bonus__content h2 {
        margin-bottom: 22px;
    }
}

/* Shared header/footer lock: keep chrome identical on every page */
html {
    scrollbar-gutter: auto;
}

html,
body {
    min-height: 100%;
}

body,
.home-page,
.about-page,
.contact-page,
.legal-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: rgb(254, 219, 85);
}

.site-main {
    flex: 1 0 auto;
    width: 100%;
    max-width: none;
    background: #fff;
}

.site-header,
.site-footer {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
}

.site-header,
.home-page .site-header {
    background: rgb(254, 219, 85);
}

.site-header__inner,
.home-page .site-header__inner {
    width: min(1240px, 100%);
    max-width: 1240px;
    min-height: 186px;
    margin: 0 auto;
    padding: 13px 16px;
    gap: 64px;
}

.site-logo img,
.home-page .site-logo img {
    width: 160px;
    height: 160px;
}

.site-nav,
.home-page .site-nav {
    gap: 37px;
}

.site-nav a,
.home-page .site-nav a {
    color: rgb(3, 94, 130);
    font-family: Ubuntu, Arial, Helvetica, sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.site-footer {
    background: rgb(254, 219, 85);
    margin-top: 0;
}

.site-footer__inner {
    width: min(1224px, 100%);
    max-width: 1224px;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 46px;
}

@media (max-width: 800px) {
    .site-header__inner,
    .home-page .site-header__inner {
        width: 100%;
        min-height: 91px;
        padding: 18px 16px;
        gap: 16px;
    }

    .site-logo img,
    .home-page .site-logo img {
        width: 55px;
        height: 55px;
    }

    .site-mobile-title {
        display: block;
        flex: 1 1 auto;
        min-width: 0;
        color: rgb(3, 94, 130);
        font-family: Ubuntu, Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.15;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .site-mobile-title:hover,
    .site-mobile-title:focus-visible {
        color: rgb(174, 28, 15);
    }

    .site-nav,
    .home-page .site-nav {
        gap: 0;
    }

    .site-footer__inner {
        width: 100%;
        grid-template-columns: 1fr;
    }
}

/* Shared inner-page visual system */
.about-page,
.contact-page,
.legal-page {
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    color: #071018;
}

.about-page .section,
.contact-page .section,
.legal-page .section,
.admin-page .section {
    background: #fff;
    padding: 42px 0 44px;
}

.about-page .section__inner,
.contact-page .section__inner,
.legal-page .section__inner,
.admin-page .section__inner {
    width: min(1224px, calc(100% - 32px));
    max-width: none;
    margin: 0 auto;
}

.about-page .page-title,
.contact-page .page-title,
.legal-page .page-title,
.admin-page .page-title,
.about-page .about-copy h2,
.about-page .about-objectives h2,
.about-page .about-values h2,
.contact-location h2 {
    font-family: Lobster, Georgia, 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.25;
}

.about-page .page-title,
.contact-page .page-title,
.legal-page .page-title,
.admin-page .page-title,
.about-page .about-copy h2,
.about-page .about-objectives h2,
.about-page .about-values h2 {
    margin: 0 0 24px;
    color: rgb(3, 94, 130);
    font-size: 44px;
}

.legal-page .page-title,
.admin-page .page-title {
    color: rgb(174, 28, 15);
}

.about-page .about-mission .page-title,
.contact-location h2 {
    color: rgb(174, 28, 15);
}

.about-page .site-main p,
.contact-page .site-main p,
.legal-page .site-main p,
.about-page .site-main li,
.contact-page .site-main label,
.contact-page .site-main input,
.contact-page .site-main textarea,
.legal-document {
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.42;
}

.about-page .about-image img,
.contact-map,
.legal-year {
    border-radius: 10px;
}

.about-page .about-vision-band {
    background: rgb(168, 218, 220);
}

.about-page .about-objectives__grid,
.values {
    color: #071018;
}

.contact-form {
    border-color: rgba(3, 94, 130, .22);
}

.contact-form button {
    background: rgb(48, 151, 188);
    color: #fff;
}

.legal-page .lead,
.admin-page .lead {
    max-width: none;
    margin: 0;
    color: #071018;
    font-size: 16px;
    line-height: 1.42;
}

.legal-docs-module {
    width: 100%;
}

.legal-download-modal__body {
    display: grid;
    gap: 18px;
    margin-top: 10px;
}

.legal-download-modal__body p {
    margin: 0;
}

.legal-download-modal__body .admin-button {
    justify-self: start;
}

.legal-year summary {
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    color: rgb(3, 94, 130);
}

.admin-section {
    background: #fff;
}

.admin-panel {
    max-width: 720px;
}

.admin-panel .admin-form {
    max-width: 50%;
}

.admin-form__alert {
    margin: 10px 0 4px;
}

.admin-section h2.admin-form__title {
    margin: 0 0 8px;
    color: #035e82;
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    font-size: 24px;
    line-height: 1.2;
}

.admin-welcome {
    color: rgb(3, 94, 130);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px;
}

.admin-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.admin-menu {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 32px;
}

.admin-session-actions {
    margin-top: 34px;
}

.admin-menu__item {
    border: 1px solid rgba(3, 94, 130, .22);
    border-radius: 8px;
    color: #071018;
    display: grid;
    gap: 8px;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    padding: 18px;
    text-decoration: none;
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.admin-menu__content {
    display: grid;
    gap: 5px;
}

.admin-menu__icon {
    align-items: center;
    background: rgba(3, 94, 130, .08);
    border-radius: 8px;
    color: rgb(3, 94, 130);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.admin-menu__icon svg,
.admin-menu-option-icon svg {
    fill: none;
    height: 22px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 22px;
}

.admin-menu-option-icon {
    align-items: center;
    color: rgb(3, 94, 130);
    display: inline-flex;
    height: 24px;
    justify-content: center;
    width: 24px;
}

.admin-table--menu-options {
    table-layout: fixed;
}

.admin-table--menu-options th,
.admin-table--menu-options td {
    vertical-align: middle;
}

.admin-table--menu-options .admin-menu-col-order {
    width: 5%;
}

.admin-table--menu-options .admin-menu-col-icon {
    width: 6%;
}

.admin-table--menu-options .admin-menu-col-option {
    width: 30%;
}

.admin-table--menu-options .admin-menu-col-permission {
    width: 12%;
}

.admin-table--menu-options .admin-menu-col-route {
    width: 23%;
}

.admin-table--menu-options .admin-menu-col-status {
    width: 8%;
}

.admin-table--menu-options .admin-menu-col-actions {
    width: 16%;
}

.admin-table--menu-options td[data-label="Opción"] {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.admin-table--menu-options td[data-label="Ruta"],
.admin-table--menu-options td[data-label="Permiso"] {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.admin-table--menu-options td[data-label="Estado"],
.admin-table--menu-options td[data-label="Acciones"] {
    text-align: center;
}

.admin-table--profiles {
    table-layout: fixed;
}

.admin-table--profiles th:nth-child(1),
.admin-table--profiles td:nth-child(1) {
    width: 16%;
}

.admin-table--profiles th:nth-child(2),
.admin-table--profiles td:nth-child(2) {
    width: 24%;
}

.admin-table--profiles th:nth-child(3),
.admin-table--profiles td:nth-child(3) {
    width: 42%;
}

.admin-table--profiles th:nth-child(4),
.admin-table--profiles td:nth-child(4) {
    width: 8%;
}

.admin-table--profiles th:nth-child(5),
.admin-table--profiles td:nth-child(5) {
    width: 10%;
}

.admin-table--profiles td,
.admin-table--menu-options td {
    overflow-wrap: anywhere;
}

.admin-menu__content strong {
    color: rgb(3, 94, 130);
    font-size: 18px;
    font-weight: 700;
}

.admin-menu__content small {
    font-size: 15px;
    line-height: 1.4;
}

.admin-menu__item:hover,
.admin-menu__item:focus-visible {
    border-color: rgb(3, 94, 130);
    box-shadow: 0 10px 24px rgba(3, 94, 130, .12);
    outline: none;
    transform: translateY(-2px);
}

.admin-toolbar__actions,
.admin-form__actions,
.admin-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-button,
.admin-form button,
.admin-actions button,
.admin-action-link {
    align-items: center;
    border: 0;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    min-height: 48px;
    background: rgb(48, 151, 188);
    color: #fff;
    cursor: pointer;
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    min-height: 40px;
    padding: 9px 12px;
    text-decoration: none;
    transition: background-color .22s ease, transform .22s ease, box-shadow .22s ease;
    white-space: nowrap;
}

.admin-button:hover,
.admin-button:focus-visible,
.admin-form button:hover,
.admin-form button:focus-visible,
.admin-actions button:hover,
.admin-actions button:focus-visible,
.admin-action-link:hover,
.admin-action-link:focus-visible {
    background: rgb(3, 94, 130);
    box-shadow: 0 10px 22px rgba(3, 94, 130, .22);
    color: #fff;
    transform: translateY(-2px);
}

.admin-form button:disabled {
    background: #b9c8cf;
    box-shadow: none;
    color: #ffffff;
    cursor: not-allowed;
    opacity: .95;
    transform: none;
}

.admin-form button:disabled:hover,
.admin-form button:disabled:focus-visible {
    background: #b9c8cf;
    box-shadow: none;
    transform: none;
}

.admin-button--danger {
    background: #d65a2a;
}

.admin-form button.admin-button--danger,
.admin-actions button.admin-button--danger {
    background: #d65a2a;
}

.admin-button--danger:hover,
.admin-button--danger:focus-visible,
.admin-form button.admin-button--danger:hover,
.admin-form button.admin-button--danger:focus-visible,
.admin-actions button.admin-button--danger:hover,
.admin-actions button.admin-button--danger:focus-visible {
    background: rgb(174, 28, 15);
}

.admin-link {
    color: rgb(3, 94, 130);
    font-weight: 700;
    text-decoration: none;
}

.admin-link:hover,
.admin-link:focus-visible {
    color: rgb(174, 28, 15);
    text-decoration: underline;
}

.admin-link--danger {
    color: #d65a2a;
}

.admin-recaptcha {
    margin: 8px 0 4px;
}

.admin-link--danger:hover,
.admin-link--danger:focus-visible {
    color: rgb(174, 28, 15);
}

.required-mark {
    color: rgb(174, 28, 15);
    font-weight: 700;
}

.admin-form {
    display: grid;
    font-size: 16px;
    gap: 12px;
    line-height: 1.42;
    margin-top: 28px;
}

.admin-filter-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    color: rgb(3, 94, 130);
    cursor: pointer;
    display: none;
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    gap: 12px;
    justify-content: space-between;
    line-height: 1.42;
    margin-top: 28px;
    min-height: 38px;
    padding: 0;
    transition: color .22s ease;
    width: 100%;
}

.admin-filter-toggle:hover,
.admin-filter-toggle:focus-visible {
    color: rgb(174, 28, 15);
    outline: none;
}

.admin-filter-toggle__switch {
    background: #d65a2a;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
    display: block;
    flex: 0 0 46px;
    height: 24px;
    position: relative;
    transition: background-color .22s ease, box-shadow .22s ease;
    width: 46px;
}

.admin-filter-toggle__switch::before {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .26);
    content: "";
    height: 18px;
    left: 3px;
    position: absolute;
    top: 3px;
    transition: transform .22s ease;
    width: 18px;
}

.admin-filter-toggle.is-active .admin-filter-toggle__switch {
    background: #29a35a;
}

.admin-filter-toggle.is-active .admin-filter-toggle__switch::before {
    transform: translateX(22px);
}

.admin-filter-toggle:focus-visible .admin-filter-toggle__switch {
    box-shadow: 0 0 0 3px rgba(168, 218, 220, .7);
}

.admin-filters {
    align-items: end;
    display: grid;
    font-size: 16px;
    grid-template-columns: 120px minmax(190px, 1.35fr) minmax(190px, 1.35fr) 140px auto;
    gap: 12px;
    line-height: 1.42;
    margin-top: 32px;
}

.admin-filters--users {
    grid-template-columns: repeat(5, minmax(120px, 1fr)) auto;
}

.admin-filters--profiles {
    grid-template-columns: minmax(150px, 1fr) minmax(220px, 1.5fr) 140px auto;
}

.admin-filters--menu,
.admin-filters--front-menu {
    grid-template-columns: minmax(170px, 1.2fr) minmax(140px, 1fr) minmax(190px, 1.4fr) 140px auto;
}

.admin-filters label {
    display: grid;
    gap: 6px;
}

.admin-filters span {
    color: rgb(3, 94, 130);
    font-size: 16px;
    font-weight: 700;
}

.admin-filters input,
.admin-filters select {
    border: 1px solid rgba(3, 94, 130, .28);
    border-radius: 4px;
    font: inherit;
    height: 42px;
    padding: 8px 10px;
    width: 100%;
}

.admin-filters select {
    appearance: none;
    background-color: #fff;
    background-image:
        linear-gradient(45deg, transparent 50%, currentColor 50%),
        linear-gradient(135deg, currentColor 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 18px,
        calc(100% - 15px) 18px;
    background-repeat: no-repeat;
    background-size: 7px 7px, 7px 7px;
    color: #071018;
    padding-right: 42px;
}

.admin-filters input:focus,
.admin-filters select:focus {
    border-color: rgb(3, 94, 130);
    box-shadow: 0 0 0 3px rgba(168, 218, 220, .55);
    outline: none;
}

.admin-filters__actions {
    display: flex;
    gap: 8px;
}

.admin-form input[type="text"],
.admin-form input[type="email"],
.admin-form input[type="password"],
.admin-form input[type="number"],
.admin-form input[type="file"],
.admin-form select {
    border: 1px solid rgba(3, 94, 130, .28);
    border-radius: 4px;
    font: inherit;
    padding: 10px 12px;
    width: 100%;
}

.admin-form select {
    appearance: none;
    background-color: #fff;
    background-image:
        linear-gradient(45deg, transparent 50%, currentColor 50%),
        linear-gradient(135deg, currentColor 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 19px,
        calc(100% - 15px) 19px;
    background-repeat: no-repeat;
    background-size: 7px 7px, 7px 7px;
    color: #071018;
    padding-right: 42px;
}

.admin-password-field {
    position: relative;
}

.admin-password-field input {
    padding-right: 48px !important;
}

.admin-password-toggle {
    align-items: center;
    background: transparent !important;
    border: 0;
    border-radius: 4px;
    color: #071018 !important;
    display: inline-flex;
    font-size: 17px;
    height: 34px;
    justify-content: center;
    padding: 0 !important;
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px !important;
    min-height: 34px !important;
    box-shadow: none !important;
}

.admin-password-toggle::before {
    background: #071018;
    content: "";
    display: block;
    height: 16px;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5c5.5 0 9.5 5.1 9.7 5.4.4.5.4 1.2 0 1.7-.2.3-4.2 5.4-9.7 5.4s-9.5-5.1-9.7-5.4a1.4 1.4 0 0 1 0-1.7C2.5 10.1 6.5 5 12 5Zm0 2C7.8 7 4.5 10.6 3.9 11.3 4.5 12.1 7.8 15.7 12 15.7s7.5-3.6 8.1-4.4C19.5 10.6 16.2 7 12 7Zm0 1.2a3.1 3.1 0 1 1 0 6.2 3.1 3.1 0 0 1 0-6.2Zm0 1.9a1.2 1.2 0 1 0 0 2.4 1.2 1.2 0 0 0 0-2.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5c5.5 0 9.5 5.1 9.7 5.4.4.5.4 1.2 0 1.7-.2.3-4.2 5.4-9.7 5.4s-9.5-5.1-9.7-5.4a1.4 1.4 0 0 1 0-1.7C2.5 10.1 6.5 5 12 5Zm0 2C7.8 7 4.5 10.6 3.9 11.3 4.5 12.1 7.8 15.7 12 15.7s7.5-3.6 8.1-4.4C19.5 10.6 16.2 7 12 7Zm0 1.2a3.1 3.1 0 1 1 0 6.2 3.1 3.1 0 0 1 0-6.2Zm0 1.9a1.2 1.2 0 1 0 0 2.4 1.2 1.2 0 0 0 0-2.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
    width: 18px;
}

.admin-password-toggle[aria-pressed="true"]::before {
    opacity: .68;
}

.admin-password-toggle:hover,
.admin-password-toggle:focus-visible {
    background: rgba(3, 94, 130, .08) !important;
    transform: translateY(-50%) !important;
}

.admin-checkbox {
    align-items: center;
    display: flex;
    gap: 10px;
}

.admin-checkbox--disabled {
    color: #7b8a92;
    cursor: not-allowed;
    opacity: .72;
}

.admin-checkbox--all {
    border-bottom: 1px solid rgba(3, 94, 130, .12);
    color: rgb(3, 94, 130);
    font-weight: 700;
    margin-bottom: 2px;
    padding-bottom: 10px;
}

.admin-icon-picker {
    border: 1px solid rgba(3, 94, 130, .18);
    border-radius: 8px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 6px 0 4px;
    max-height: none;
    overflow: visible;
    padding: 14px;
}

.admin-icon-picker legend {
    color: rgb(3, 94, 130);
    font-weight: 700;
    padding: 0 6px;
}

.admin-icon-picker__item {
    align-items: center;
    border: 1px solid rgba(3, 94, 130, .16);
    border-radius: 8px;
    color: #071018;
    cursor: pointer;
    display: grid;
    gap: 8px;
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: 52px;
    padding: 9px 10px;
    transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.admin-icon-picker__item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.admin-icon-picker__preview {
    align-items: center;
    color: rgb(3, 94, 130);
    display: inline-flex;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.admin-icon-picker__preview svg {
    fill: none;
    height: 22px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 22px;
}

.admin-icon-picker__item > span:last-child {
    font-size: 14px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-icon-picker__item:has(input:checked) {
    background: rgba(168, 218, 220, .35);
    border-color: rgb(3, 94, 130);
    box-shadow: 0 0 0 2px rgba(3, 94, 130, .08);
}

.admin-icon-picker__item:hover,
.admin-icon-picker__item:focus-within {
    border-color: rgb(3, 94, 130);
}

.admin-status-field {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
}

.admin-status-field > span:first-child {
    color: rgb(3, 94, 130);
    font-weight: 700;
}

.admin-table-wrap {
    margin-top: 22px;
    overflow-x: visible;
    width: 100%;
}

.admin-table {
    border-collapse: collapse;
    font-size: 16px;
    line-height: 1.42;
    table-layout: fixed;
    width: 100%;
}

.admin-table th:nth-child(1),
.admin-table td:nth-child(1) {
    width: 60px;
}

.admin-table th:nth-child(2),
.admin-table td:nth-child(2) {
    width: 25%;
}

.admin-table th:nth-child(3),
.admin-table td:nth-child(3) {
    width: 42%;
}

.admin-table th:nth-child(4),
.admin-table td:nth-child(4) {
    width: 72px;
}

.admin-table th:nth-child(5),
.admin-table td:nth-child(5) {
    width: 92px;
}

.admin-table th:nth-child(6),
.admin-table td:nth-child(6) {
    width: 160px;
}

.admin-table--users th:nth-child(1),
.admin-table--users td:nth-child(1) {
    width: 24%;
}

.admin-table--users th:nth-child(2),
.admin-table--users td:nth-child(2) {
    width: 20%;
}

.admin-table--users th:nth-child(3),
.admin-table--users td:nth-child(3) {
    width: 15%;
}

.admin-table--users th:nth-child(4),
.admin-table--users td:nth-child(4) {
    width: 20%;
}

.admin-table--users th:nth-child(5),
.admin-table--users td:nth-child(5) {
    width: 82px;
}

.admin-table--users th:nth-child(6),
.admin-table--users td:nth-child(6) {
    width: 160px;
}

.admin-table--profiles th:nth-child(1),
.admin-table--profiles td:nth-child(1) {
    width: 16%;
}

.admin-table--profiles th:nth-child(2),
.admin-table--profiles td:nth-child(2) {
    width: 22%;
}

.admin-table--profiles th:nth-child(3),
.admin-table--profiles td:nth-child(3) {
    width: 30%;
}

.admin-table--profiles th:nth-child(4),
.admin-table--profiles td:nth-child(4) {
    width: 22%;
}

.admin-table--profiles th:nth-child(5),
.admin-table--profiles td:nth-child(5) {
    width: 82px;
}

.admin-table--profiles th:nth-child(6),
.admin-table--profiles td:nth-child(6) {
    width: 150px;
}

.admin-table--profiles th:nth-child(1),
.admin-table--profiles td:nth-child(1) {
    width: 16%;
}

.admin-table--profiles th:nth-child(2),
.admin-table--profiles td:nth-child(2) {
    width: 24%;
}

.admin-table--profiles th:nth-child(3),
.admin-table--profiles td:nth-child(3) {
    width: 42%;
}

.admin-table--profiles th:nth-child(4),
.admin-table--profiles td:nth-child(4) {
    width: 8%;
}

.admin-table--profiles th:nth-child(5),
.admin-table--profiles td:nth-child(5) {
    width: 10%;
}

.admin-table--profiles th:nth-child(6),
.admin-table--profiles td:nth-child(6) {
    width: auto;
}

.admin-table--menu-options th:nth-child(1),
.admin-table--menu-options td:nth-child(1) {
    width: 5%;
}

.admin-table--menu-options th:nth-child(2),
.admin-table--menu-options td:nth-child(2) {
    width: 6%;
}

.admin-table--menu-options th:nth-child(3),
.admin-table--menu-options td:nth-child(3) {
    width: 30%;
}

.admin-table--menu-options th:nth-child(4),
.admin-table--menu-options td:nth-child(4) {
    width: 12%;
}

.admin-table--menu-options th:nth-child(5),
.admin-table--menu-options td:nth-child(5) {
    width: 23%;
}

.admin-table--menu-options th:nth-child(6),
.admin-table--menu-options td:nth-child(6) {
    width: 8%;
}

.admin-table--menu-options th:nth-child(7),
.admin-table--menu-options td:nth-child(7) {
    width: 16%;
}

.admin-table--front-menu th:nth-child(1),
.admin-table--front-menu td:nth-child(1) {
    width: 5%;
}

.admin-table--front-menu th:nth-child(2),
.admin-table--front-menu td:nth-child(2) {
    width: 8%;
}

.admin-table--front-menu th:nth-child(3),
.admin-table--front-menu td:nth-child(3) {
    width: 13%;
}

.admin-table--front-menu th:nth-child(4),
.admin-table--front-menu td:nth-child(4) {
    width: 22%;
}

.admin-table--front-menu th:nth-child(5),
.admin-table--front-menu td:nth-child(5) {
    width: 20%;
}

.admin-table--front-menu th:nth-child(6),
.admin-table--front-menu td:nth-child(6) {
    width: 8%;
}

.admin-table--front-menu th:nth-child(7),
.admin-table--front-menu td:nth-child(7) {
    width: 24%;
}

.admin-table--front-menu {
    table-layout: fixed;
}

.admin-table--front-menu th,
.admin-table--front-menu td {
    min-width: 0;
}

.admin-table--front-menu td[data-label="Clave"],
.admin-table--front-menu td[data-label="Nombre"],
.admin-table--front-menu td[data-label="Título pestaña"],
.admin-table--front-menu td[data-label="Ruta"] {
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
}

.admin-table--front-menu td[data-label="Estado"] {
    min-width: 0;
}

.admin-permissions-field {
    border: 1px solid rgba(3, 94, 130, .18);
    border-radius: 6px;
    display: grid;
    gap: 10px;
    margin: 6px 0 4px;
    padding: 14px;
}

.admin-permissions-field legend {
    color: rgb(3, 94, 130);
    font-weight: 700;
    padding: 0 6px;
}

.admin-settings-form {
    margin-top: 24px;
}

.admin-table th,
.admin-table td {
    border: 0;
    padding: 14px 12px;
    text-align: left;
    vertical-align: middle;
}

.admin-table tr {
    border-bottom: 1px solid #d8e8ee;
}

.admin-table th {
    color: rgb(3, 94, 130);
    font-weight: 700;
}

.admin-actions form {
    align-items: center;
    display: flex;
    margin: 0;
}

.admin-table td.admin-actions {
    display: table-cell;
    min-width: 0;
}

.admin-actions {
    min-width: 0;
}

.admin-actions__buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.admin-actions__buttons .admin-action-link {
    flex: 1 1 0;
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
}

.admin-table--users .admin-actions__buttons .admin-action-link,
.admin-table--profiles .admin-actions__buttons .admin-action-link,
.admin-table--documents .admin-actions__buttons .admin-action-link,
.admin-table--menu-options .admin-actions__buttons .admin-action-link,
.admin-table--front-menu .admin-actions__buttons .admin-action-link {
    flex: 0 0 auto;
    min-width: 86px;
    padding-left: 8px;
    padding-right: 8px;
}

.admin-table--documents .admin-actions__buttons,
.admin-table--menu-options .admin-actions__buttons,
.admin-table--front-menu .admin-actions__buttons {
    gap: 8px;
}

.admin-table--documents th:nth-child(1),
.admin-table--documents td:nth-child(1) {
    width: 5%;
}

.admin-table--documents th:nth-child(2),
.admin-table--documents td:nth-child(2) {
    width: 6%;
}

.admin-table--documents th:nth-child(3),
.admin-table--documents td:nth-child(3) {
    width: 24%;
}

.admin-table--documents th:nth-child(4),
.admin-table--documents td:nth-child(4) {
    width: 23%;
}

.admin-table--documents td:nth-child(3) {
    overflow-wrap: anywhere;
    word-break: normal;
}

.admin-table--documents td:nth-child(4) a {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.admin-table--documents th:nth-child(5),
.admin-table--documents td:nth-child(5) {
    width: 7%;
    white-space: nowrap;
}

.admin-table--documents th:nth-child(6),
.admin-table--documents td:nth-child(6) {
    width: 7%;
}

.admin-table--documents th:nth-child(7),
.admin-table--documents td:nth-child(7) {
    width: 7%;
}

.admin-table--documents th:nth-child(8),
.admin-table--documents td:nth-child(8) {
    width: 21%;
}

.admin-action-link--danger {
    background: #d65a2a;
}

.admin-action-link--danger:hover,
.admin-action-link--danger:focus-visible {
    background: rgb(174, 28, 15);
}

.admin-action-icon {
    align-items: center;
    border-radius: 4px;
    color: rgb(3, 94, 130);
    display: inline-flex;
    height: 40px;
    justify-content: center;
    text-decoration: none;
    transition: background-color .22s ease, color .22s ease, transform .22s ease;
    width: 40px;
}

.admin-action-icon svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 20px;
}

.admin-action-icon:hover,
.admin-action-icon:focus-visible {
    background: rgba(3, 94, 130, .1);
    color: rgb(3, 94, 130);
    outline: none;
    transform: translateY(-2px);
}

.admin-action-icon--danger {
    color: #d65a2a;
}

.admin-action-icon--danger:hover,
.admin-action-icon--danger:focus-visible {
    background: rgba(214, 90, 42, .12);
    color: rgb(174, 28, 15);
}

.admin-status-form {
    margin: 0;
}

.admin-status-switch {
    cursor: pointer;
    display: inline-flex;
    height: 24px;
    position: relative;
    width: 46px;
}

.admin-status-switch input {
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}

.admin-status-switch span[aria-hidden="true"] {
    background: #d65a2a;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
    display: block;
    height: 100%;
    position: relative;
    transition: background-color .22s ease, box-shadow .22s ease;
    width: 100%;
}

.admin-status-switch span[aria-hidden="true"]::before {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .26);
    content: "";
    height: 18px;
    left: 3px;
    position: absolute;
    top: 3px;
    transition: transform .22s ease;
    width: 18px;
}

.admin-status-switch input:checked + span[aria-hidden="true"] {
    background: #29a35a;
}

.admin-status-switch input:checked + span[aria-hidden="true"]::before {
    transform: translateX(22px);
}

.admin-status-switch input:focus-visible + span[aria-hidden="true"] {
    box-shadow: 0 0 0 3px rgba(168, 218, 220, .7);
}

.admin-status-switch input:disabled + span[aria-hidden="true"] {
    cursor: not-allowed;
    opacity: .55;
}

.admin-status-switch--lg {
    height: 32px;
    width: 58px;
}

.admin-status-switch--lg span[aria-hidden="true"]::before {
    height: 24px;
    left: 4px;
    top: 4px;
    width: 24px;
}

.admin-status-switch--lg input:checked + span[aria-hidden="true"]::before {
    transform: translateX(26px);
}

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

.admin-pagination {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
}

.admin-pagination > span {
    color: #071018;
    font-size: 16px;
}

.admin-pagination__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.admin-pagination__links a {
    align-items: center;
    border: 1px solid rgba(3, 94, 130, .28);
    border-radius: 4px;
    color: rgb(3, 94, 130);
    display: inline-flex;
    font-size: 14px;
    justify-content: center;
    min-height: 36px;
    min-width: 36px;
    padding: 7px 10px;
    text-decoration: none;
}

.admin-pagination__links a:hover,
.admin-pagination__links a:focus-visible,
.admin-pagination__links a.is-active {
    background: rgb(3, 94, 130);
    color: #fff;
}

.admin-modal-open {
    overflow: hidden;
}

.admin-modal {
    align-items: flex-start;
    display: flex;
    inset: 0;
    justify-content: center;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 24px;
    position: fixed;
    z-index: 80;
}

.admin-modal__backdrop {
    animation: adminModalBackdropIn .24s ease both;
    background: rgba(7, 16, 24, .54);
    inset: 0;
    position: fixed;
}

.admin-modal__panel {
    animation: adminModalPanelIn .28s ease both;
    background: #fff;
    border: 1px solid rgba(3, 94, 130, .22);
    border-radius: 10px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
    font-size: 16px;
    line-height: 1.42;
    margin: auto 0;
    max-height: none;
    max-width: 680px;
    overflow: visible;
    padding: 26px;
    position: relative;
    width: min(680px, 100%);
    z-index: 1;
}

.admin-modal.is-closing .admin-modal__backdrop {
    animation: adminModalBackdropOut .22s ease both;
}

.admin-modal.is-closing {
    pointer-events: none;
}

.admin-modal.is-closing .admin-modal__panel {
    animation: adminModalPanelOut .22s ease both;
}

@keyframes adminModalBackdropIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes adminModalBackdropOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes adminModalPanelIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes adminModalPanelOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(10px) scale(.985);
    }
}

.admin-modal__header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.admin-modal__header h2 {
    color: rgb(174, 28, 15);
    font-family: Lobster, Georgia, 'Times New Roman', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.15;
    margin: 0;
}

.admin-modal__close {
    border-radius: 50%;
    color: rgb(3, 94, 130);
    display: inline-block;
    flex: 0 0 38px;
    height: 38px;
    font-size: 0;
    line-height: 1;
    position: relative;
    text-decoration: none;
    width: 38px;
}

.admin-modal__close::before,
.admin-modal__close::after {
    background: currentColor;
    border-radius: 999px;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 14px;
}

.admin-modal__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.admin-modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.admin-modal__close:hover,
.admin-modal__close:focus-visible {
    background: rgba(214, 90, 42, .12);
    color: rgb(174, 28, 15);
}

.admin-delete-confirm {
    display: grid;
    gap: 12px;
}

.admin-delete-confirm p {
    margin: 0;
}

.admin-delete-confirm span {
    color: rgb(3, 94, 130);
    overflow-wrap: anywhere;
}

.admin-download-error {
    display: grid;
    gap: 18px;
    margin-top: 14px;
}

.admin-download-error p {
    margin: 0;
}

.admin-download-error .admin-button {
    justify-self: start;
}

.admin-dashboard {
    display: grid;
    gap: 22px;
}

.admin-modal__header + .admin-dashboard {
    margin-top: 18px;
}

.admin-dashboard__cards {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-dashboard__cards article {
    background: rgba(168, 218, 220, .24);
    border: 1px solid rgba(3, 94, 130, .16);
    border-radius: 8px;
    display: grid;
    gap: 8px;
    padding: 14px;
}

.admin-dashboard__cards span,
.admin-dashboard__list span {
    color: #4b5563;
    font-size: 12px;
    line-height: 1.35;
}

.admin-dashboard__cards span {
    display: block;
    min-height: 34px;
}

.admin-dashboard__cards strong {
    color: rgb(3, 94, 130);
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 700;
    line-height: 1.1;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.admin-dashboard h3 {
    color: rgb(3, 94, 130);
    font-size: 16px;
    margin: 6px 0 0;
}

.admin-dashboard__list {
    border: 1px solid rgba(3, 94, 130, .14);
    border-radius: 8px;
    display: grid;
}

.admin-dashboard__list p {
    align-items: center;
    border-bottom: 1px solid rgba(3, 94, 130, .12);
    display: flex;
    font-size: 13px;
    gap: 14px;
    justify-content: space-between;
    margin: 0;
    padding: 12px 14px;
}

.admin-dashboard__list p:last-child {
    border-bottom: 0;
}

.admin-dashboard__submission {
    border-bottom: 1px solid rgba(3, 94, 130, .12);
    display: grid;
    gap: 10px;
    padding: 12px 14px;
}

.admin-dashboard__submission:last-child {
    border-bottom: 0;
}

.admin-dashboard__submission header {
    align-items: start;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.admin-dashboard__submission p {
    border: 0;
    color: #071018;
    display: block;
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
    padding: 0;
}

.admin-dashboard__submission-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.admin-dashboard__submission-actions .admin-button {
    padding: 7px 11px;
}

.admin-dashboard__list strong {
    color: #071018;
    font-weight: 700;
}

.admin-dashboard__list--compact p {
    padding-block: 10px;
}

.admin-dashboard__actions {
    justify-content: flex-start;
    margin-top: 18px;
}

@keyframes adminFiltersFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes adminFiltersFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@media (max-width: 800px) {
    .admin-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-toolbar__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .admin-filter-toggle {
        display: inline-flex;
    }

    .admin-filters {
        display: none;
        grid-template-columns: 1fr;
        margin-top: 14px;
    }

    .admin-filters.is-open {
        animation: adminFiltersFadeIn .62s ease both;
        display: grid;
    }

    .admin-filters.is-closing {
        animation: adminFiltersFadeOut .48s ease both;
        display: grid;
        pointer-events: none;
    }

    .admin-filters__actions {
        flex-direction: column;
    }

    .admin-filters__actions .admin-button {
        width: 100%;
    }

    .admin-form__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-button,
    .admin-link {
        text-align: center;
    }

    .admin-toolbar__actions .admin-button {
        width: 100%;
    }

    .admin-toolbar__actions .admin-link {
        align-items: center;
        display: inline-flex;
        justify-content: center;
        min-height: 44px;
    }

    .admin-menu {
        grid-template-columns: 1fr;
    }

    .admin-panel .admin-form {
        max-width: 100%;
    }

    .admin-dashboard__submission-actions .admin-button {
        width: 100%;
    }

    .admin-dashboard__submission-actions {
        flex-direction: column;
    }

    .admin-table-wrap {
        overflow: visible;
    }

    .admin-table,
    .admin-table thead,
    .admin-table tbody,
    .admin-table tr,
    .admin-table th,
    .admin-table td {
        display: block;
        width: 100%;
    }

    .admin-table th,
    .admin-table td {
        width: 100% !important;
    }

    .admin-table thead {
        display: none;
    }

    .admin-table tr {
        border: 1px solid #d8e8ee;
        border-radius: 8px;
        margin-bottom: 16px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 8px 22px rgba(3, 94, 130, .08);
    }

    .admin-table td {
        border-bottom: 1px solid #e8f1f4;
        display: grid;
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
        padding: 12px 14px;
    }

    .admin-table td:last-child {
        border-bottom: 0;
    }

    .admin-table td::before {
        content: attr(data-label);
        color: rgb(3, 94, 130);
        font-weight: 700;
        justify-self: start;
        text-align: left;
    }

    .admin-table td a {
        overflow-wrap: anywhere;
    }

    .admin-actions {
        display: grid;
        grid-template-columns: 92px minmax(0, 1fr);
        column-gap: 12px;
        row-gap: 0;
        min-width: 0;
    }

    .admin-status-form {
        display: flex;
        justify-content: flex-start;
    }

    .admin-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-pagination__links {
        justify-content: flex-start;
    }

    .admin-modal {
        align-items: flex-start;
        padding: 14px;
    }

    .admin-modal__panel {
        max-height: none;
        overflow: visible;
        padding: 20px 16px;
    }

    .admin-modal__header h2 {
        font-size: 32px;
    }

    .admin-dashboard__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-dashboard__list p {
        align-items: flex-start;
        display: grid;
    }

    .admin-icon-picker {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-height: none;
    }

    .admin-actions::before {
        align-self: center;
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        text-align: left;
    }

    .admin-table td.admin-actions {
        align-items: center;
        column-gap: 12px;
        display: grid;
        grid-template-columns: 92px minmax(0, 1fr);
        min-width: 0;
    }

    .admin-actions .admin-action-link,
    .admin-actions .admin-action-icon,
    .admin-actions .admin-actions__buttons,
    .admin-actions form,
    .admin-actions button {
        width: auto;
    }

    .admin-actions .admin-action-link,
    .admin-actions .admin-action-icon,
    .admin-actions button {
        min-height: 40px;
        padding: 9px 12px;
        text-align: center;
    }

    .admin-actions .admin-actions__buttons {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
    }

    .admin-actions .admin-actions__buttons .admin-action-link {
        flex: 0 0 auto;
        min-width: 92px;
    }

    .admin-actions form {
        grid-column: 2 / -1;
    }

    .admin-actions .admin-actions__buttons,
    .admin-actions .admin-action-icon {
        grid-column: 2;
        grid-row: 1;
    }

    .admin-actions .admin-action-link + form,
    .admin-actions .admin-action-link + .admin-action-icon {
        margin-top: 0;
    }
}

.about-page .about-objectives-values {
    padding-top: 44px;
    padding-bottom: 58px;
}

.about-objectives-values__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
    gap: 120px;
    align-items: start;
}

.about-page .about-objectives-values h2 {
    margin: 0 0 26px;
    font-family: Lobster, Georgia, 'Times New Roman', serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
}

.about-page .about-objectives h2 {
    color: rgb(174, 28, 15);
}

.about-page .about-values h2 {
    color: rgb(3, 94, 130);
}

.about-objectives__list,
.about-page .values {
    margin: 0;
    padding-left: 24px;
    color: #071018;
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.about-objectives__list {
    display: grid;
    gap: 24px;
}

.about-page .values {
    columns: 2;
    column-gap: 54px;
}

.about-page .values li {
    break-inside: avoid;
    margin-bottom: 4px;
}

@media (max-width: 900px) {
    .about-page .section,
    .contact-page .section,
    .legal-page .section {
        padding: 32px 0;
    }

    .about-page .page-title,
    .contact-page .page-title,
    .legal-page .page-title,
    .admin-page .page-title,
    .about-page .about-copy h2,
    .about-page .about-objectives h2,
    .about-page .about-values h2,
    .contact-location h2 {
        font-size: 34px;
    }

    .about-objectives-values__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-page .values {
        columns: 1;
    }
}

/* Desktop two-column sections: keep subsections balanced 50/50 */
@media (min-width: 901px) {
    .home-object__grid,
    .home-programs__grid,
    .home-help__grid,
    .home-bonus__grid,
    .about-page .about-grid,
    .about-page .about-grid--vision,
    .about-objectives-values__grid,
    .contact-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Shared header and footer: same look in public and admin pages */
.site-header {
    background: rgb(254, 219, 85);
    margin-top: 0;
}

.site-header__inner {
    width: min(1240px, 100%);
    max-width: 1240px;
    min-height: 186px;
    margin: 0 auto;
    padding: 13px 16px;
    gap: 64px;
}

.site-logo img {
    width: 160px;
    height: 160px;
}

.site-nav {
    gap: 37px;
}

.site-nav a {
    color: rgb(3, 94, 130);
    font-family: Ubuntu, Arial, Helvetica, sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.site-footer {
    background: rgb(254, 219, 85);
    margin-top: 0;
}

.site-footer__inner {
    width: min(1224px, 100%);
    max-width: 1224px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 46px;
}

.site-footer p,
.site-footer a,
.site-footer span {
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.35;
}

.site-footer h2 {
    font-family: Ubuntu, Arial, Helvetica, sans-serif !important;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
}

.site-footer h3 {
    font-family: Ubuntu, Arial, Helvetica, sans-serif !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.site-footer .footer-brand__quote {
    font-size: 13px;
    line-height: 1.32;
}

@media (max-width: 800px) {
    .site-header__inner {
        width: 100%;
        min-height: 91px;
        padding: 18px 16px;
        gap: 16px;
    }

    .site-logo img {
        width: 55px;
        height: 55px;
    }

    .site-nav {
        gap: 0;
    }

    .site-footer__inner {
        width: 100%;
        grid-template-columns: 1fr;
    }
}

/* Footer reset: the shared partial must render identically on public and admin pages. */
.site-footer {
    background: rgb(254, 219, 85);
    color: rgb(3, 94, 130);
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.35;
    margin: 0;
    padding: 42px 0 32px;
    width: 100%;
}

.site-footer,
.site-footer * {
    box-sizing: border-box;
}

.site-footer__inner {
    align-items: start;
    display: grid;
    gap: 46px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1240px;
    width: min(1240px, calc(100% - 48px));
}

.site-footer .footer-brand,
.site-footer .footer-contact,
.site-footer .footer-disclaimer {
    min-width: 0;
}

.site-footer h2,
.site-footer h3,
.site-footer p {
    margin-top: 0;
}

.site-footer h2 {
    margin-bottom: 22px;
}

.site-footer h3 {
    margin-bottom: 16px;
}

.site-footer p {
    margin-bottom: 12px;
}

.site-footer p,
.site-footer a,
.site-footer span,
.site-footer em {
    color: inherit;
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.9px !important;
}

.site-footer h2 {
    font-family: Ubuntu, Arial, Helvetica, sans-serif !important;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
}

.site-footer h3 {
    font-family: Ubuntu, Arial, Helvetica, sans-serif !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.site-footer .footer-brand__quote {
    font-size: 13px;
    line-height: 17.16px !important;
    max-width: 340px;
    width: 340px;
}

.site-footer .footer-brand__bottom {
    align-items: start;
    display: grid;
    gap: 6px;
    margin-top: 20px;
}

.site-footer .footer-brand__logos {
    align-items: center;
    display: flex;
    gap: 12px;
    line-height: 1;
}

.site-footer .footer-brand__logo-link {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    height: 52px;
    line-height: 1 !important;
}

.site-footer .footer-brand__logos img {
    display: block;
    flex: 0 0 52px;
    height: 52px;
    object-fit: contain;
    width: 52px;
}

.site-footer .footer-social {
    align-items: center;
    background: rgb(3, 94, 130);
    border-radius: 50%;
    color: rgb(254, 219, 85);
    display: inline-flex;
    flex: 0 0 38px;
    height: 38px;
    justify-content: center;
    line-height: 1 !important;
    text-decoration: none;
    width: 38px;
}

.site-footer .footer-social svg {
    display: block;
    fill: currentColor;
    height: 24px;
    width: 24px;
}

.site-footer .footer-social path {
    fill: currentColor;
    stroke: none;
}

.site-footer .footer-social:hover,
.site-footer .footer-social:focus-visible {
    background: rgb(174, 28, 15);
    color: #fff;
    text-decoration: none;
}

.site-footer .footer-contact__item {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: 28px minmax(0, 1fr);
    line-height: 18.9px !important;
    margin-bottom: 12px;
    min-height: 28px;
}

.site-footer .footer-contact__item img {
    align-self: center;
    display: block;
    height: 26px;
    object-fit: contain;
    width: 26px;
}

.site-footer .footer-contact__item > a,
.site-footer .footer-contact__item > span {
    align-self: center;
}

.site-footer .footer-disclaimer p {
    max-width: 420px;
}

.site-footer .footer-disclaimer p:last-child,
.site-footer .footer-contact p:last-child,
.site-footer .footer-brand p:last-child {
    margin-bottom: 0;
}

@media (max-width: 800px) {
    .site-footer {
        padding: 34px 0 28px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        width: min(100% - 32px, 1240px);
    }

    .site-footer .footer-brand__quote {
        width: 100%;
    }
}

/* Shared UI polish: common alerts, modal controls, and admin table actions */
.contact-alert {
    align-items: center;
    margin-top: 10px;
    min-height: 52px;
    padding: 14px 16px;
}

.contact-alert p {
    line-height: 1.35;
}

.admin-modal__close {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    line-height: 1;
    text-indent: -9999px;
}

.admin-modal__close::before,
.admin-modal__close::after {
    left: 50%;
    top: 50%;
}

.admin-modal__header {
    gap: 24px;
}

.admin-download-error,
.legal-download-modal__body {
    margin-top: 18px;
}

.admin-actions__buttons {
    align-items: center;
}

.admin-actions__buttons .admin-action-link {
    display: inline-flex;
    justify-content: center;
    min-width: 96px;
}

@media (max-width: 700px) {
    .admin-table td.admin-actions {
        align-items: center;
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .admin-actions::before {
        align-self: center;
    }

    .admin-actions .admin-actions__buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .admin-actions .admin-actions__buttons .admin-action-link {
        min-width: 0;
        width: 100%;
    }
}
