
:root {
    --color-primary: #005fbf;
    --color-secondary: #0b1b3b;
    --color-accent: #f5a623;
    --color-light: #f7f9fc;
    --color-dark: #111827;
    --radius-lg: 1.25rem;
    --shadow-soft: 0 18px 45px rgba(15,23,42,0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1f2933;
    background: radial-gradient(circle at top left, #0b3b86 0, #020617 45%, #020617 100%);
}

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

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

.page-wrapper {
    min-height: 100vh;
    color: #e5e7eb;
}

header.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
}

header.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(120deg, rgba(2,6,23,0.9), rgba(15,23,42,0.80)),
        url("../images/hero-stadium.jpg");
    background-size: cover;
    background-position: center;
    filter: saturate(1.2);
    z-index: -2;
}

header.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(59,130,246,0.35), transparent 60%);
    mix-blend-mode: screen;
    opacity: 0.9;
    z-index: -1;
}

.hero-inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.85);
    border: 1px solid rgba(148,163,184,0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #e5e7eb;
    margin-bottom: 0.9rem;
}

.badge-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34,197,94,0.9);
}

h1 {
    font-size: clamp(2.4rem, 3.2vw + 1.4rem, 3.7rem);
    line-height: 1.05;
    margin: 0 0 0.75rem;
}

.hero-highlight {
    background: linear-gradient(120deg, #60a5fa, #e5e7eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 38rem;
    color: #d1d5db;
    margin-bottom: 1.4rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.95rem;
    color: #e5e7eb;
    margin-bottom: 1.75rem;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-meta-pill {
    padding: 0.15rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #cbd5f5;
    background: rgba(15,23,42,0.85);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 1.8rem;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.98rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #f9fafb;
    box-shadow: 0 18px 45px rgba(59,130,246,0.65);
}

.btn-primary:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 22px 55px rgba(37,99,235,0.9);
}

.btn-outline {
    background: rgba(15,23,42,0.8);
    color: #e5e7eb;
    border: 1px solid rgba(148,163,184,0.8);
}

.btn-outline:hover {
    background: rgba(15,23,42,0.95);
    transform: translateY(-1px);
}

.btn-small {
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
}

.hero-footnote {
    font-size: 0.85rem;
    color: #9ca3af;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.hero-footnote strong {
    color: #e5e7eb;
}

.hero-footnote span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-footnote-dot {
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background: rgba(148,163,184,0.8);
}

.hero-media-card {
    background: radial-gradient(circle at top, rgba(248,250,252,0.06), rgba(15,23,42,0.96));
    border-radius: 1.75rem;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148,163,184,0.35);
    position: relative;
    overflow: hidden;
}

.hero-media-main {
    border-radius: 1.4rem;
    overflow: hidden;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(148,163,184,0.45);
}

.hero-media-main img {
    width: 100%;
}

.hero-media-tag {
    position: absolute;
    top: 1.2rem;
    right: 1.1rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.85);
    border: 1px solid rgba(148,163,184,0.7);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #e5e7eb;
}

.hero-media-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 0.4rem;
}

.hero-stat-group {
    display: flex;
    gap: 0.8rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.hero-stat strong {
    font-size: 0.95rem;
    color: #e5e7eb;
}

.badge-nfl {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.6);
    font-size: 0.72rem;
    text-transform: uppercase;
    color: #cbd5f5;
}

.section {
    padding: 4.2rem 1.5rem 3.3rem;
    background: radial-gradient(circle at top, #020617 0, #020617 45%, #020617 100%);
}

.section.alt {
    background: radial-gradient(circle at top, #020617 0, #020617 55%, #020617 100%);
}

.section-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.section-header {
    text-align: left;
    margin-bottom: 2.4rem;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.7rem;
    margin: 0;
    color: #f9fafb;
}

.section-description {
    margin-top: 0.5rem;
    max-width: 36rem;
    font-size: 0.98rem;
    color: #e5e7eb;
}

.grid {
    display: grid;
    gap: 1.4rem;
}

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

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

.card {
    background: radial-gradient(circle at top left, rgba(15,23,42,0.85), rgba(15,23,42,0.97));
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.3rem;
    border: 1px solid rgba(55,65,81,0.85);
    box-shadow: 0 14px 35px rgba(15,23,42,0.55);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.card-title {
    font-size: 1.02rem;
    margin: 0;
    color: #f9fafb;
}

.pill {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.8);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #cbd5f5;
}

.card-body {
    font-size: 0.96rem;
    color: #e5e7eb;
    margin-top: 0.35rem;
}

.card-body ul {
    padding-left: 1.1rem;
    margin: 0.4rem 0 0;
}

.card-body li {
    margin-bottom: 0.2rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.feature-pill {
    font-size: 0.8rem;
    padding: 0.45rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.65);
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(15,23,42,0.9);
}

.feature-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(56,189,248,0.9);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.info-block {
    background: radial-gradient(circle at top left, rgba(15,23,42,0.9), rgba(15,23,42,0.98));
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(55,65,81,0.9);
    box-shadow: var(--shadow-soft);
}

.info-block h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    color: #f9fafb;
    font-size: 1.1rem;
}

.info-rows {
    display: grid;
    row-gap: 0.65rem;
    font-size: 0.94rem;
    color: #e5e7eb;
}

.info-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 0.15rem;
}

.info-row strong {
    color: #e5e7eb;
}

.info-row a {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.poster-card {
    background: radial-gradient(circle at top, rgba(15,23,42,0.9), rgba(15,23,42,0.98));
    border-radius: 1.1rem;
    padding: 0.55rem;
    border: 1px solid rgba(55,65,81,0.9);
    box-shadow: 0 16px 35px rgba(15,23,42,0.75);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.82rem;
}

.poster-card img {
    border-radius: 0.9rem;
}

.poster-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    color: #e5e7eb;
}

.poster-meta span {
    font-size: 0.78rem;
    color: #9ca3af;
}

.poster-tag {
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.8);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
}

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

.gallery-item {
    position: relative;
    border-radius: 0.9rem;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(55,65,81,0.9);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.22s ease, filter 0.22s ease;
}

.gallery-item::after {
    content: "Ver foto";
    position: absolute;
    inset: auto 0 0 0;
    padding: 0.35rem 0.6rem;
    font-size: 0.72rem;
    background: linear-gradient(to top, rgba(15,23,42,0.95), transparent);
    text-align: center;
    color: #e5e7eb;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 80;
    padding: 1rem;
}

.lightbox.open {
    display: flex;
}

.lightbox-inner {
    max-width: min(1024px, 100%);
    max-height: 90vh;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.8);
    box-shadow: 0 22px 55px rgba(0,0,0,0.8);
    background: #020617;
    position: relative;
}

.lightbox-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #020617;
}

.lightbox-close {
    position: absolute;
    top: 0.6rem;
    right: 0.75rem;
    background: rgba(15,23,42,0.95);
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.8);
    padding: 0.15rem 0.45rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.video-frame {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(55,65,81,0.9);
    box-shadow: 0 16px 40px rgba(15,23,42,0.95);
    background: #020617;
    aspect-ratio: 16 / 9;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: flex-start;
}

form {
    display: grid;
    gap: 0.9rem;
}

label {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 0.25rem;
    display: block;
}

input,
textarea {
    width: 100%;
    font: inherit;
    padding: 0.7rem 0.8rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(55,65,81,0.9);
    background: rgba(15,23,42,0.9);
    color: #e5e7eb;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input::placeholder,
textarea::placeholder {
    color: #6b7280;
}

input:focus,
textarea:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 1px rgba(37,99,235,0.8);
    background: rgba(15,23,42,0.98);
}

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

.contact-note {
    font-size: 0.86rem;
    color: #9ca3af;
    margin-top: 0.4rem;
}

.contact-panel {
    background: radial-gradient(circle at top left, rgba(15,23,42,0.92), rgba(15,23,42,0.98));
    border-radius: 1.25rem;
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(55,65,81,0.95);
    box-shadow: var(--shadow-soft);
    font-size: 0.95rem;
    color: #e5e7eb;
}

.contact-panel h3 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-size: 1.08rem;
    color: #f9fafb;
}

.contact-panel ul {
    padding-left: 1.1rem;
    margin: 0.2rem 0 0.6rem;
}

.contact-panel li {
    margin-bottom: 0.25rem;
}

.map-block {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #cbd5f5;
}

.map-block a {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-style: dotted;
}

footer {
    border-top: 1px solid rgba(55,65,81,0.9);
    padding: 1.6rem 1.5rem 2.2rem;
    background: #020617;
    color: #9ca3af;
    font-size: 0.85rem;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
}

.footer-inner a {
    color: #e5e7eb;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-style: dotted;
}

.footer-highlight {
    color: #e5e7eb;
}

.cta-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    font-size: 0.87rem;
}

.cta-inline a strong {
    color: #e5e7eb;
}

.floating-whatsapp {
    position: fixed;
    right: 1.1rem;
    bottom: 1.4rem;
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 999px;
    background: radial-gradient(circle at top, #4ade80, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(22,163,74,0.9);
    z-index: 60;
    border: 2px solid #e5f9f0;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-whatsapp span {
    font-size: 1.55rem;
}

.floating-whatsapp:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 22px 50px rgba(21,128,61,1);
}

.phone-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.5rem 1rem 0.75rem;
    background: linear-gradient(to right, rgba(15,23,42,0.98), rgba(4,6,18,0.98));
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    z-index: 55;
    border-top: 1px solid rgba(31,41,55,0.9);
}

.phone-bar span {
    font-size: 0.83rem;
    color: #e5e7eb;
}

.phone-bar a {
    font-size: 0.86rem;
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-media-card {
        max-width: 420px;
        margin: 0 auto;
    }

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

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

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

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

@media (max-width: 720px) {
    header.hero {
        padding-top: 4.2rem;
    }

    .section {
        padding-inline: 1.15rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

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

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

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

    .phone-bar {
        display: flex;
    }

    body {
        padding-bottom: 3.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
