:root {
    --bg: #09121c;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-soft: rgba(255, 255, 255, 0.84);
    --ink: #0d2238;
    --muted: #516170;
    --line: rgba(13, 34, 56, 0.10);
    --brand: #0a6c8f;
    --brand-2: #0d8db3;
    --accent: #d9a15a;
    --accent-soft: rgba(217, 161, 90, 0.14);
    --brand-soft: rgba(10, 126, 164, 0.12);
    --shadow: 0 24px 70px rgba(5, 25, 42, 0.16);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "IBM Plex Sans", "Segoe UI", Tahoma, Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.10), transparent 26%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(5, 15, 26, 0.92), rgba(7, 24, 39, 0.96));
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

img[data-lightbox] {
    cursor: zoom-in;
}

video[data-lightbox-video] {
    cursor: pointer;
}

.shell {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    padding: 18px 0 8px;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f5f7fb;
    font-weight: 700;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(245, 247, 251, 0.82);
    font-size: 0.95rem;
}

.nav a.active,
.nav a:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

.hero {
    padding: 22px 0;
}

.hero-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(3, 12, 22, 0.62), rgba(7, 24, 39, 0.36)),
        linear-gradient(0deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-main {
    padding: 54px 50px;
    color: #f5f7fb;
}

.hero-side {
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.hero-side img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 22px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(245, 247, 251, 0.92);
    font-size: 13px;
    font-weight: 700;
}

h1 {
    margin: 18px 0 16px;
    font-size: clamp(2.2rem, 4.8vw, 4.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.lead {
    margin: 0;
    color: rgba(245, 247, 251, 0.80);
    font-size: 1.04rem;
    line-height: 1.95;
    max-width: 62ch;
}

.hero-stats,
.grid {
    display: grid;
    gap: 16px;
}

.hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.stat,
.card {
    border-radius: var(--radius-lg);
}

.stat {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    color: #f5f7fb;
}

.stat strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.55rem;
}

.stat span {
    color: rgba(245, 247, 251, 0.76);
    font-size: 0.92rem;
    line-height: 1.7;
}

main section {
    padding-top: 26px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.section-head h2 {
    margin: 0;
    color: #f5f7fb;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-head p {
    margin: 0;
    max-width: 58ch;
    color: rgba(245, 247, 251, 0.78);
    line-height: 1.85;
}

.grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 22px;
    box-shadow: 0 14px 35px rgba(23, 33, 43, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.card--dark {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f5f7fb;
}

.card--dark p,
.card--dark li {
    color: rgba(245, 247, 251, 0.82);
}

.tag {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: var(--brand-soft);
    color: var(--brand);
}

.tag.accent {
    background: var(--accent-soft);
    color: #8a5b21;
}

.card h3 {
    margin: 14px 0 8px;
    font-size: 1.18rem;
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
}

.card__image {
    width: calc(100% + 44px);
    max-width: none;
    margin: -22px -22px 16px;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.media-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(23, 33, 43, 0.05);
}

.media-card img,
.media-card video {
    width: 100%;
    background: #06101a;
}

.media-card img {
    height: 260px;
    object-fit: cover;
}

.media-card video {
    display: block;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.media-card video[poster] {
    object-position: center top;
}

.media-card__body {
    padding: 16px 18px 18px;
}

.media-card__body h3 {
    margin: 0 0 6px;
    font-size: 1.02rem;
}

.media-card__body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(6, 16, 26, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox.is-open {
    display: flex;
}

.lightbox__dialog {
    position: relative;
    width: min(1200px, 100%);
    max-height: calc(100vh - 48px);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(8, 18, 29, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.lightbox__image {
    width: 100%;
    max-height: calc(100vh - 48px);
    object-fit: contain;
    background: #06101a;
}

.lightbox__video {
    display: none;
    width: 100%;
    max-height: calc(100vh - 48px);
    background: #06101a;
}

.lightbox--video .lightbox__image {
    display: none;
}

.lightbox--video .lightbox__video {
    display: block;
}

.lightbox__close {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.list li {
    position: relative;
    padding-right: 18px;
    line-height: 1.75;
}

.list li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.cta {
    margin-top: 24px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #0a6c8f, #0d8db3);
    color: #f8fafb;
    box-shadow: var(--shadow);
}

.cta h2 {
    margin: 0 0 10px;
}

.cta p {
    margin: 0;
    line-height: 1.95;
    color: rgba(248, 250, 251, 0.9);
}

.footer {
    padding: 28px 0 48px;
    color: rgba(245, 247, 251, 0.72);
    font-size: 0.94rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__link {
    color: rgba(245, 247, 251, 0.85);
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent), #c4914a);
    color: #1a0f00;
    box-shadow: 0 8px 24px rgba(217, 161, 90, 0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(217, 161, 90, 0.45);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #f5f7fb;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.btn--whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

@media (max-width: 1024px) {
    .hero-card,
    .grid.cols-3,
    .grid.cols-4,
    .hero-stats,
    .media-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .topbar__inner,
    .section-head {
        flex-direction: column;
        align-items: start;
    }

    .hero-card,
    .grid.cols-3,
    .grid.cols-4,
    .hero-stats,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .hero-main,
    .hero-side {
        padding: 26px;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card,
.media-card {
    animation: fadeInUp 0.5s ease forwards;
}

.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.2s; }
.card:nth-child(4) { animation-delay: 0.3s; }
.card:nth-child(5) { animation-delay: 0.4s; }
.card:nth-child(6) { animation-delay: 0.5s; }

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
