@charset "UTF-8";
/* Warriors Team Force — Modern Professional Theme */
:root {
    --background: hsl(220, 10%, 10%);
    --foreground: hsl(0, 0%, 95%);
    --card: hsl(220, 10%, 14%);
    --card-foreground: hsl(0, 0%, 95%);
    --primary: hsl(0, 75%, 48%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(220, 10%, 18%);
    --muted: hsl(220, 10%, 16%);
    --muted-foreground: hsl(220, 8%, 68%);
    --accent: hsl(42, 95%, 55%);
    --accent-foreground: hsl(220, 10%, 10%);
    --border: hsl(220, 10%, 20%);
    --radius: 0.5rem;
    --header-height: 72px;
    --logo-size: 44px;
    --logo-size-large: 96px;
    --container: 1200px;
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-impact: 'Barlow Condensed', 'Oswald', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
    font-family: var(--font-body);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.skip-link {
    position: absolute; top: -100%; left: 1rem; z-index: 9999;
    background: var(--primary); color: #fff; padding: 0.5rem 1rem; border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; border-radius: var(--radius); font-weight: 600;
    font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em;
    border: 2px solid transparent; cursor: pointer;
    font-family: var(--font-display);
    position: relative;
    z-index: 0;
}
.btn-primary { background: var(--primary); color: var(--primary-foreground); border-color: hsl(0 75% 40%); }
.btn-accent { background: var(--accent); color: var(--accent-foreground); border-color: hsl(42 90% 45%); }
.btn-outline { background: transparent; border-color: hsl(42 95% 55% / 0.45); color: var(--foreground); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.75rem; }
.btn-lg { padding: 0.95rem 1.85rem; font-size: 0.92rem; letter-spacing: 0.1em; }
.btn-block { width: 100%; }

/* Header */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--header-height);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    overflow: visible;
    box-shadow: none;
    transition: background 0.45s, box-shadow 0.45s, backdrop-filter 0.45s;
}
.site-header.scrolled {
    background: hsl(220 10% 10% / 0.62);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    box-shadow: 0 4px 20px hsl(0 0% 0% / 0.2);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 1rem;
    position: relative;
    overflow: visible;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
    z-index: 1005;
    text-decoration: none;
    position: relative;
    overflow: visible;
}
.logo-ring {
    position: relative;
    z-index: 1006;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--logo-size-large);
    height: var(--logo-size-large);
    margin-top: 12px;
    margin-bottom: calc((var(--logo-size-large) - var(--header-height)) * -0.85 - 16px);
    transition:
        width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        margin 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header.scrolled .logo-ring {
    width: var(--logo-size);
    height: var(--logo-size);
    margin-top: 0;
    margin-bottom: 0;
}
.logo-ring img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: box-shadow 0.45s;
    box-shadow: 0 8px 32px hsl(0 0% 0% / 0.45);
}
.site-header.scrolled .logo-ring img {
    box-shadow: 0 2px 12px hsl(0 0% 0% / 0.3);
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    position: relative;
    z-index: 1005;
}
.logo-text strong {
    font-family: var(--font-display);
    font-size: 0.88rem;
    letter-spacing: 0.15em;
}
.logo-text small {
    font-size: 0.62rem;
    color: var(--primary);
    letter-spacing: 0.2em;
}

@media (max-width: 1100px) {
    :root { --logo-size-large: 80px; }
}

@media (prefers-reduced-motion: reduce) {
    .logo-ring,
    .logo-ring img {
        transition-duration: 0.01ms !important;
    }
    .site-header.scrolled .logo-ring {
        width: var(--logo-size);
        height: var(--logo-size);
    }
}

.main-nav {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}
@media (min-width: 1101px) {
    .main-nav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .header-inner {
        justify-content: flex-start;
    }
    .header-right {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(calc(-50% + 6px));
        margin-left: 0;
    }
}
.header-right {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
    z-index: 1002;
    margin-left: auto;
}
.location-badge.location-badge-header {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    padding: 0.22rem 0.55rem;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    gap: 0.3rem;
    line-height: 1.2;
    border: 1px solid hsl(42 95% 55% / 0.32);
    border-radius: 999px;
    background: hsl(0 0% 0% / 0.25);
    backdrop-filter: blur(6px);
    color: var(--accent);
    white-space: nowrap;
    flex-shrink: 0;
}
.location-badge.location-badge-header .status-dot {
    width: 4px;
    height: 4px;
}
.location-badge.location-badge-header svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    color: var(--accent);
}
@media (max-width: 520px) {
    .location-badge.location-badge-header {
        font-size: 0.62rem;
        padding: 0.18rem 0.45rem;
    }
    .location-badge.location-badge-header span:last-child {
        max-width: 8.5rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
.header-spacer { display: none; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.08rem;
    position: relative;
    padding: 0.18rem;
    background: hsl(220 10% 14% / 0.45);
    border: 1px solid hsl(220 10% 22% / 0.85);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px hsl(0 0% 0% / 0.2), inset 0 1px 0 hsl(0 0% 100% / 0.04);
}
.nav-links > a,
.nav-dropdown-trigger {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.38rem 0.75rem;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    transition: color 0.25s, background 0.25s;
    white-space: nowrap;
}
.nav-index { display: none; }
.nav-icon {
    flex-shrink: 0;
    opacity: 0.72;
    transition: opacity 0.25s, color 0.25s;
}
.nav-links > a:hover .nav-icon,
.nav-dropdown-trigger:hover .nav-icon,
.nav-links > a.nav-active .nav-icon,
.nav-dropdown-trigger.nav-active .nav-icon {
    opacity: 1;
}
.nav-links > a.nav-active .nav-icon,
.nav-dropdown-trigger.nav-active .nav-icon {
    color: var(--primary);
}
.nav-links > a.nav-highlight .nav-icon {
    color: var(--accent);
    opacity: 0.9;
}
.nav-restricted {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 0.15rem;
    padding: 0.38rem 0.75rem;
    padding-left: 0.85rem !important;
    border-left: 1px solid hsl(220 10% 24%);
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: hsl(220 8% 72%) !important;
    cursor: default;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}
.nav-restricted .nav-icon {
    color: hsl(0 75% 48% / 0.85);
    opacity: 0.9;
}
.nav-links > a:hover,
.nav-dropdown-trigger:hover,
.nav-links > a.nav-active,
.nav-dropdown-trigger.nav-active {
    color: var(--foreground);
}
.nav-links > a.nav-active,
.nav-dropdown-trigger.nav-active {
    background: hsl(0 75% 48% / 0.12);
    color: var(--primary);
}
.nav-links > a.nav-highlight {
    color: var(--accent);
}
.nav-links > a.nav-highlight:hover,
.nav-links > a.nav-highlight.nav-active {
    color: var(--accent);
    background: hsl(42 95% 55% / 0.1);
}
.nav-chevron {
    transition: transform 0.25s;
    opacity: 0.7;
    margin-left: 0.1rem;
}
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    min-width: 260px;
    list-style: none;
    margin: 0;
    padding: 0.5rem;
    background: hsl(220 10% 12% / 0.98);
    border: 1px solid hsl(220 10% 22%);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px hsl(0 0% 0% / 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 10;
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 1.25rem;
    width: 10px;
    height: 10px;
    background: hsl(220 10% 12%);
    border-left: 1px solid hsl(220 10% 22%);
    border-top: 1px solid hsl(220 10% 22%);
    transform: rotate(45deg);
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.nav-dropdown.open .nav-chevron,
.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}
.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.78rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted-foreground);
    border-radius: calc(var(--radius) - 2px);
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.nav-dd-icon {
    flex-shrink: 0;
    opacity: 0.85;
}
.nav-dd-label { line-height: 1.2; }
.nav-dd-divider {
    height: 1px;
    margin: 0.35rem 0.65rem;
    background: hsl(220 10% 22%);
    list-style: none;
}
.nav-dd-feature {
    align-items: flex-start !important;
    gap: 0.75rem !important;
    padding: 0.85rem !important;
    background: hsl(0 75% 48% / 0.07);
    border: 1px solid hsl(0 75% 48% / 0.22);
}
.nav-dd-feature:hover,
.nav-dd-feature.nav-active {
    background: hsl(0 75% 48% / 0.14) !important;
    border-color: hsl(0 75% 48% / 0.4) !important;
}
.nav-dd-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: calc(var(--radius) - 2px);
    background: hsl(0 75% 48% / 0.16);
    color: var(--primary);
}
.nav-dd-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}
.nav-dd-text strong {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--foreground);
}
.nav-dd-text small {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.02em;
    line-height: 1.35;
    color: var(--muted-foreground);
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.nav-active {
    color: var(--primary);
    background: hsl(0 75% 48% / 0.1);
}

.nav-panel-head,
.nav-close,
.nav-overlay { display: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: hsl(220 10% 14% / 0.8);
    border: 1px solid hsl(220 10% 22%);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    transition: background 0.25s, border-color 0.25s;
}
.nav-toggle:hover { border-color: hsl(0 75% 48% / 0.5); }
.nav-toggle-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s, width 0.25s;
    transform-origin: center;
}
.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative; min-height: 100svh; display: flex; flex-direction: column;
    justify-content: center; padding-top: var(--header-height); overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 85% 40%, hsl(0 75% 35% / 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 15% 85%, hsl(42 95% 55% / 0.06) 0%, transparent 45%);
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 4; padding: 4rem 0 5.5rem;
}
.hero .location-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.25rem; border-radius: 999px;
    border: 1px solid hsl(42 95% 55% / 0.4); background: hsl(0 0% 0% / 0.4);
    backdrop-filter: blur(8px); font-size: 0.75rem; letter-spacing: 0.25em;
    color: var(--accent); margin-bottom: 2rem;
}
.hero-title {
    font-family: var(--font-impact);
    font-size: clamp(2.75rem, 9vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.hero-line {
    display: block;
}
.hero-line-1 {
    margin-bottom: 0.05em;
}
.hero-line-2 {
    display: block;
    font-style: italic;
    font-weight: 900;
    color: hsl(0 0% 100%);
    text-shadow:
        0 3px 28px hsl(0 0% 0% / 0.75),
        0 0 40px hsl(0 75% 48% / 0.15);
}
.hero-intro {
    position: relative;
    max-width: 52rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 2px solid hsl(42 95% 55% / 0.55);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.hero-intro::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 2px;
    height: 2.75rem;
    background: linear-gradient(180deg, var(--accent) 0%, hsl(42 95% 55% / 0.15) 100%);
    box-shadow: 0 0 14px hsl(42 95% 55% / 0.45);
}
.hero-lead {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(0.92rem, 1.65vw, 1.15rem);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.01em;
    color: hsl(0 0% 92%);
    text-shadow: 0 2px 22px hsl(0 0% 0% / 0.85);
}
@media (min-width: 900px) {
    .hero-lead {
        white-space: nowrap;
        font-size: clamp(0.95rem, 1.35vw, 1.12rem);
    }
}
.hero-lead-alt {
    color: hsl(220 8% 76%);
}
.hero-lead::before {
    content: '';
    display: inline-block;
    width: 0.42em;
    height: 0.42em;
    margin-right: 0.55rem;
    background: var(--accent);
    transform: rotate(45deg);
    vertical-align: middle;
    box-shadow: 0 0 10px hsl(42 95% 55% / 0.55);
}
.text-gold {
    color: hsl(42 95% 62%);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 0 0 18px hsl(42 95% 55% / 0.35);
}
.text-gold-soft {
    color: hsl(42 85% 58%);
    font-weight: 500;
    letter-spacing: 0.03em;
}
.hero-lead .text-gold,
.hero-lead .text-gold-soft {
    font-weight: 600;
}
.hero-actions {
    margin-bottom: 1.75rem;
}
.hero-actions-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 1rem;
    max-width: 100%;
}

/* Divisor inferior do hero — bandeira Portugal */
.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 6;
    pointer-events: none;
    background: transparent;
}

.hero-divider-bar {
    display: flex;
    width: 100%;
    height: 5px;
    filter: drop-shadow(0 3px 7px hsl(0 0% 0% / 0.42));
}

.hero-divider-green {
    flex: 2;
    background: #006847;
}

.hero-divider-red {
    flex: 3;
    background: #da291c;
}

/* Sections */
.section { padding: 6rem 0; }
.section-alt {
    background:
        linear-gradient(180deg, hsl(220 10% 11%) 0%, hsl(220 10% 13%) 50%, hsl(220 10% 11%) 100%);
}
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(0 75% 48% / 0.5), hsl(42 95% 55% / 0.4), transparent);
}
.section-header { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.section-label-icon { opacity: 0.9; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.section-intro { color: var(--muted-foreground); font-size: 1.05rem; }

/* Cards */
.cards-grid { display: grid; gap: 2rem; }
.cards-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 2rem; transition: all 0.3s ease;
}
.card:hover { border-color: hsl(0 75% 48% / 0.4); transform: translateY(-4px); box-shadow: 0 12px 40px hsl(0 0% 0% / 0.3); }
.card-highlight { border-color: hsl(0 75% 48% / 0.3); background: linear-gradient(135deg, var(--card), hsl(0 75% 48% / 0.05)); }
.card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(0 75% 48% / 0.22), hsl(0 75% 48% / 0.08));
    border: 1px solid hsl(0 75% 48% / 0.28);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    color: var(--primary);
    box-shadow: 0 4px 18px hsl(0 75% 48% / 0.12);
}
.card-icon svg { width: 26px; height: 26px; }
.card-highlight .card-icon {
    background: linear-gradient(135deg, hsl(42 95% 55% / 0.2), hsl(0 75% 48% / 0.1));
    border-color: hsl(42 95% 55% / 0.35);
    color: var(--accent);
}
.card h3 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--foreground); }
.card p { color: var(--muted-foreground); font-size: 0.95rem; margin-bottom: 0.75rem; }

.check-list li {
    position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem;
    color: var(--muted-foreground); font-size: 0.95rem;
}
.check-list li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Split layout */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-content p { color: var(--muted-foreground); margin-bottom: 1rem; }
.location-link a { color: var(--accent); font-size: 0.9rem; }
.location-link a:hover { text-decoration: underline; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.5rem; text-align: center;
}
.stat-number { display: block; font-family: var(--font-display); font-size: 1.75rem; color: var(--primary); }
.stat-label { font-size: 0.75rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.1em; }

/* Feature cards */
.feature-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 2rem; position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: var(--primary);
}
.feature-number {
    font-family: var(--font-impact); font-size: 3rem; color: hsl(0 75% 48% / 0.2);
    line-height: 1; margin-bottom: 0.5rem;
}
.feature-card h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.feature-card p { color: var(--muted-foreground); font-size: 0.95rem; }

/* Tabs */
.tabs-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.tab-btn {
    padding: 0.75rem 1.5rem; background: var(--secondary); border: 1px solid var(--border);
    border-radius: var(--radius); color: var(--muted-foreground); cursor: pointer;
    font-family: var(--font-display); font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 0.05em; transition: all 0.2s;
}
.tab-btn:hover { border-color: var(--primary); color: var(--foreground); }
.tab-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.tab-panel { display: none; animation: fadeIn 0.3s ease; }
.tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.tab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.tab-content h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.tab-content p { color: var(--muted-foreground); margin-bottom: 1rem; }
.tab-content .check-list { margin: 1.5rem 0; }
.tab-content-wide .lead { font-size: 1.1rem; color: var(--foreground); margin-bottom: 0; }

/* Forms */
.inscricao-form, .contact-form {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 2rem;
}
.inscricao-form h4, .contact-form h4 { font-size: 1rem; margin-bottom: 1.5rem; color: var(--accent); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8rem; color: var(--muted-foreground); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.75rem 1rem; background: var(--background);
    border: 1px solid var(--border); border-radius: var(--radius); color: var(--foreground);
    font-family: var(--font-body); font-size: 0.95rem; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px hsl(0 75% 48% / 0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.alert {
    padding: 1rem 1.5rem; border-radius: var(--radius); margin-bottom: 2rem;
    font-size: 0.95rem;
}
.alert-success { background: hsl(142 70% 30% / 0.2); border: 1px solid hsl(142 70% 40%); color: hsl(142 70% 70%); }
.alert-error { background: hsl(0 70% 30% / 0.2); border: 1px solid hsl(0 70% 40%); color: hsl(0 70% 70%); }

/* Rental */
.rental-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.rental-card, .pricing-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem;
}
.pricing-featured { border-color: var(--primary); background: linear-gradient(135deg, var(--card), hsl(0 75% 48% / 0.08)); }
.pricing-card-head {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid hsl(0 0% 100% / 0.08);
}
.pricing-card-label {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: hsl(0 0% 94%);
    line-height: 1.3;
}
.pricing-card-label small {
    display: block;
    margin-top: 0.15rem;
    font-family: var(--font-body, inherit);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--muted-foreground);
}
.pricing-card-price {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
    letter-spacing: 0.02em;
}
.pricing-card-price-muted {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.pricing-featured .pricing-card-head {
    border-bottom-color: hsl(0 75% 48% / 0.28);
}
.pricing-featured .pricing-card-price {
    text-shadow: 0 0 18px hsl(0 75% 48% / 0.22);
}
.price { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--primary); margin-bottom: 0.5rem; }
.pricing-card ul li { color: var(--muted-foreground); font-size: 0.88rem; line-height: 1.45; padding: 0.35rem 0; padding-left: 1rem; position: relative; }
.pricing-card ul li::before { content: '-'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.rental-note { color: var(--muted-foreground); font-size: 0.9rem; margin: 1.5rem 0; padding: 1rem; background: var(--muted); border-radius: var(--radius); }
.rental-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }

/* Events */
.event-panel { display: none; }
.event-panel.active { display: block; animation: fadeIn 0.3s ease; }
.event-content h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.event-content p { color: var(--muted-foreground); margin-bottom: 1rem; }
.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 2rem 0; }
.rules-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; transition: border-color 0.25s ease; }
.event-panel-expand-inner .rules-box {
    background: hsl(220 10% 11%);
    border-color: hsl(0 0% 100% / 0.07);
    padding: 1.05rem;
}
.event-panel-expand-inner .rules-box:has(.event-table) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.event-panel-expand-inner .rules-box:hover {
    border-color: color-mix(in srgb, var(--event-expand-accent) 35%, transparent);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--event-expand-accent) 10%, transparent);
}
.rules-box h4 { font-size: 0.85rem; margin-bottom: 0.6rem; color: var(--accent); }
.score-zones { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.zone { padding: 0.35rem 0.75rem; border-radius: 4px; font-size: 0.8rem; font-weight: 600; }
.zone-a { background: hsl(0 75% 48%); color: #fff; }
.zone-b { background: hsl(30 80% 50%); color: #fff; }
.zone-c { background: hsl(60 60% 45%); color: #fff; }
.zone-d { background: hsl(220 10% 40%); color: #fff; }
.formula { background: var(--muted); padding: 0.75rem; border-radius: var(--radius); margin: 0.75rem 0; overflow-wrap: anywhere; word-break: break-word; }
.formula-example { font-size: 0.9rem; color: var(--accent); }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin: 2rem 0; }
.category-card { background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: var(--radius); padding: 1.25rem; transition: border-color 0.25s ease, transform 0.25s ease; }
.event-panel-expand-inner .category-card {
    background: hsl(220 10% 11%);
    border-color: hsl(0 0% 100% / 0.07);
    border-left-color: var(--event-expand-accent, var(--primary));
    padding: 1.05rem;
}
.event-panel-expand-inner .category-card:hover {
    border-color: color-mix(in srgb, var(--event-expand-accent) 32%, transparent);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px color-mix(in srgb, var(--event-expand-accent) 10%, transparent);
}
.category-label { font-size: 0.75rem; color: var(--primary); letter-spacing: 0.1em; }
.category-card h4 { margin: 0.5rem 0 1rem; }
.category-card ul li { color: var(--muted-foreground); font-size: 0.9rem; padding: 0.2rem 0; padding-left: 1rem; position: relative; }
.category-card ul li::before { content: '>'; position: absolute; left: 0; color: var(--accent); font-weight: 700; font-size: 0.85rem; }
.category-card p { color: var(--muted-foreground); font-size: 0.9rem; line-height: 1.6; }

.event-list { margin: 0.75rem 0; padding-left: 0; list-style: none; }
.event-list li {
    color: var(--muted-foreground); font-size: 0.9rem; padding: 0.35rem 0 0.35rem 1rem;
    position: relative;
}
.event-list li::before { content: '>'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.event-table { width: 100%; min-width: 260px; border-collapse: collapse; font-size: 0.82rem; margin-top: 0.5rem; }
.event-table th {
    text-align: left; padding: 0.5rem 0.6rem; font-size: 0.68rem;
    text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent);
    border-bottom: 1px solid var(--border);
}
.event-table td {
    padding: 0.5rem 0.6rem; border-bottom: 1px solid var(--border);
    color: var(--muted-foreground);
}
.event-table td:last-child { font-weight: 600; color: var(--foreground); white-space: normal; }

.event-penalties { margin: 2rem 0; }
.event-note { margin-top: 1rem; font-size: 0.9rem; color: var(--muted-foreground); }
.event-contact-note { margin-top: 1.5rem; margin-bottom: 1rem; font-size: 0.9rem; color: var(--muted-foreground); }

.upcoming-events {
    margin-top: 3rem;
    padding-top: 1.75rem;
    border-top: 1px solid hsl(42 95% 58% / 0.12);
}
.upcoming-events-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}
.upcoming-events-head::before {
    content: '';
    flex: 0 0 2px;
    align-self: stretch;
    min-height: 1.25rem;
    background: linear-gradient(180deg, var(--primary), hsl(42 95% 58%));
    border-radius: 2px;
}
.upcoming-events h3 {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.2rem);
    letter-spacing: 0.05em;
}
.upcoming-events-empty {
    margin: 0;
    padding: 0.75rem 0.9rem;
    font-size: 0.82rem;
    color: var(--muted-foreground);
    border: 1px solid hsl(0 0% 100% / 0.08);
    background: hsl(220 10% 9% / 0.55);
    border-radius: var(--radius);
}
.events-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    align-items: stretch;
}
.event-item {
    display: grid;
    grid-template-columns: 3.25rem 1fr;
    gap: 0.65rem 0.75rem;
    align-items: start;
    height: 100%;
    min-height: 0;
    background: hsl(220 10% 13%);
    border: 1px solid hsl(220 10% 20%);
    border-radius: calc(var(--radius) - 2px);
    padding: 0.65rem 0.75rem;
    box-shadow: 0 2px 12px hsl(0 0% 0% / 0.14);
    position: relative;
    overflow: hidden;
}
.event-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: hsl(42 95% 58%);
    opacity: 0.85;
}
.event-item--is-live::before { background: hsl(142 55% 48%); }
.event-item--is-tomorrow::before { background: hsl(28 90% 52%); }
.event-item--is-finished::before { background: hsl(220 8% 40%); opacity: 0.5; }
.event-item-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.35rem 0.25rem;
    border-radius: calc(var(--radius) - 3px);
    background: hsl(220 10% 10%);
    border: 1px solid hsl(42 95% 58% / 0.22);
    text-align: center;
    line-height: 1;
}
.event-item-date-badge-day {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: hsl(42 95% 62%);
    letter-spacing: 0.02em;
}
.event-item-date-badge-month {
    display: block;
    margin-top: 0.2rem;
    font-family: var(--font-display);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    color: var(--muted-foreground);
}
.event-item-main {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
    height: 100%;
}
.event-item-header {
    margin: 0;
}
.event-item-header-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}
.event-item h4 {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.25;
    letter-spacing: 0.03em;
}
.event-item-desc {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.74rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.event-item-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
}
.event-item-when {
    margin: 0;
}
.event-item-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.35rem;
}
.event-item-chip-sep {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    color: hsl(220 8% 50%);
    user-select: none;
}
.event-item-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.18rem 0.45rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
    border: 1px solid transparent;
    white-space: nowrap;
}
.event-item-chip-icon {
    flex-shrink: 0;
    opacity: 0.8;
}
.event-item-chip--date-start {
    color: hsl(42 95% 62%);
    border-color: hsl(42 95% 58% / 0.28);
    background: hsl(42 95% 58% / 0.08);
}
.event-item-chip--date-start .event-item-chip-icon { color: hsl(42 95% 58%); }
.event-item-chip--time-start {
    color: hsl(0 0% 90%);
    border-color: hsl(220 10% 28%);
    background: hsl(220 10% 16% / 0.8);
}
.event-item-chip--date-end {
    color: hsl(0 75% 62%);
    border-color: hsl(0 75% 48% / 0.28);
    background: hsl(0 75% 48% / 0.08);
}
.event-item-chip--date-end .event-item-chip-icon { color: hsl(0 75% 55%); }
.event-item-chip--time-end {
    color: hsl(0 75% 68%);
    border-color: hsl(0 75% 48% / 0.22);
    background: hsl(0 75% 48% / 0.06);
}
.event-item-chip--time-end .event-item-chip-icon { color: hsl(0 75% 55%); }
.event-item-chip--all-day {
    color: var(--muted-foreground);
    border-color: hsl(220 10% 24%);
    background: hsl(220 10% 15% / 0.6);
    font-size: 0.68rem;
    font-style: italic;
}
.event-item-status {
    display: inline-block;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.56rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border: 1px solid transparent;
}
.event-item-status--is-scheduled {
    color: hsl(42 95% 62%);
    border-color: hsl(42 95% 58% / 0.35);
    background: hsl(42 95% 58% / 0.08);
}
.event-item-status--is-tomorrow {
    color: hsl(28 90% 62%);
    border-color: hsl(28 90% 55% / 0.4);
    background: hsl(28 90% 55% / 0.1);
}
.event-item-status--is-live {
    color: hsl(142 55% 58%);
    border-color: hsl(142 55% 45% / 0.4);
    background: hsl(142 55% 45% / 0.1);
}
.event-item-type {
    flex-shrink: 0;
    font-size: 0.56rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: hsl(42 95% 58%);
    border: 1px solid hsl(42 95% 55% / 0.22);
    padding: 0.1rem 0.35rem;
    border-radius: 999px;
}
.event-item-valores {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: hsl(0 75% 58%);
    border: 1px solid hsl(0 75% 48% / 0.25);
    padding: 0.1rem 0.35rem;
    background: hsl(0 75% 48% / 0.06);
    border-radius: 999px;
}
.event-item-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem 0.65rem;
    padding-top: 0.1rem;
    margin-top: auto;
}
.event-item-meta {
    margin: 0;
    flex: 1 1 8rem;
    color: var(--muted-foreground);
    font-size: 0.68rem;
    opacity: 0.9;
    line-height: 1.35;
}
.event-item-link {
    margin: 0;
    padding: 0.25rem 0.5rem;
    font-size: 0.68rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .events-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .event-item {
        grid-template-columns: 2.75rem 1fr;
        gap: 0.5rem 0.6rem;
        padding: 0.55rem 0.6rem;
    }
    .event-item-date-badge-day {
        font-size: 1.15rem;
    }
    .event-item-chips {
        gap: 0.2rem 0.28rem;
    }
    .event-item-chip {
        font-size: 0.68rem;
        padding: 0.15rem 0.38rem;
    }
    .event-item-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Protocols & Partners */
.protocol-grid, .partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.protocol-card, .partner-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem;
}
.protocol-badge, .partner-logo {
    display: inline-block; padding: 0.5rem 1rem; background: hsl(0 75% 48% / 0.15);
    color: var(--primary); font-family: var(--font-display); font-weight: 700;
    border-radius: var(--radius); margin-bottom: 1rem; letter-spacing: 0.1em;
}
.protocol-card h3, .partner-card h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.protocol-card p, .partner-card p { color: var(--muted-foreground); font-size: 0.95rem; margin-bottom: 0.75rem; }
.partner-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* Gallery (legacy grid — secção galeria usa .galeria-section) */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gallery-grid .gallery-item {
    aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
    position: relative; border: 1px solid var(--border);
}
.gallery-grid .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-grid .gallery-item:hover img { transform: scale(1.05); }
.gallery-grid .gallery-item figcaption {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem;
    background: linear-gradient(transparent, hsl(0 0% 0% / 0.8)); font-size: 0.85rem;
}
.gallery-placeholder { background: var(--card); display: flex; align-items: center; justify-content: center; }
.placeholder-content { text-align: center; color: var(--muted-foreground); }
.placeholder-content svg { width: 48px; height: 48px; margin: 0 auto 0.5rem; opacity: 0.4; }
.gallery-cta { text-align: center; margin-top: 3rem; }

/* Info / Accordion */
.info-tabs {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 1.5);
    overflow: hidden;
    margin-bottom: 3rem;
}
.info-tabs-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid var(--border);
    background: hsl(220 10% 10%);
}
.info-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 1rem 0.75rem;
    border: none;
    border-right: 1px solid hsl(220 10% 18%);
    background: transparent;
    color: var(--muted-foreground);
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}
.info-tab-btn:last-child { border-right: none; }
.info-tab-btn svg { opacity: 0.75; transition: opacity 0.2s, color 0.2s; }
.info-tab-btn:hover {
    color: var(--foreground);
    background: hsl(220 10% 13%);
}
.info-tab-btn.active {
    color: var(--primary);
    background: hsl(0 75% 48% / 0.1);
    box-shadow: inset 0 -3px 0 var(--primary);
}
.info-tab-btn.active svg { opacity: 1; color: var(--primary); }
.info-tabs-panels { padding: 1.75rem; }
.info-tab-panel { display: none; }
.info-tab-panel.active { display: block; animation: info-panel-in 0.35s ease; }
@keyframes info-panel-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}
.info-panel-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}
.info-panel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: hsl(0 75% 48% / 0.12);
    border: 1px solid hsl(0 75% 48% / 0.25);
    color: var(--primary);
}
.info-panel-head h3 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: var(--foreground);
}
.info-panel-head p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin: 0;
}
.info-secondary,
.info-contact {
    margin-bottom: 3rem;
}
.info-secondary-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    color: var(--accent);
}
.info-secondary-head h3 {
    font-size: 1.15rem;
    margin: 0;
    color: var(--accent);
}
.info-layout { display: flex; flex-direction: column; gap: 3rem; }
.info-block h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--accent); }
.workshop-title { font-style: italic; color: var(--foreground); margin-bottom: 1.5rem; }
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
    width: 100%; text-align: left; padding: 1rem 1.25rem; background: var(--card);
    border: none; color: var(--foreground); cursor: pointer; font-family: var(--font-body);
    font-size: 0.95rem; font-weight: 500; display: flex; justify-content: space-between; align-items: center;
    transition: background 0.2s;
}
.accordion-trigger::after { content: '+'; font-size: 1.25rem; color: var(--primary); transition: transform 0.2s; }
.accordion-item.open .accordion-trigger::after { transform: rotate(45deg); }
.accordion-trigger:hover { background: var(--secondary); }
.accordion-content { display: none; padding: 0 1.25rem 1.25rem; color: var(--muted-foreground); }
.accordion-item.open .accordion-content { display: block; }
.module-list { list-style: decimal; padding-left: 1.5rem; }
.module-list li { margin-bottom: 0.35rem; color: var(--muted-foreground); }
.links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.link-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.25rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
}
.link-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: calc(var(--radius) - 2px);
    background: hsl(0 75% 48% / 0.12);
    border: 1px solid hsl(0 75% 48% / 0.22);
    color: var(--primary);
}
.link-card-body { min-width: 0; }
.link-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.link-card:hover .link-card-icon {
    background: hsl(0 75% 48% / 0.2);
    border-color: hsl(0 75% 48% / 0.4);
}
.link-card strong { display: block; font-size: 0.9rem; margin-bottom: 0.25rem; color: var(--foreground); }
.link-card span { font-size: 0.8rem; color: var(--muted-foreground); }
.link-card-group:hover { border-color: var(--primary); }
.link-card-links {
    list-style: none;
    padding: 0;
    margin: 0.65rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.link-card-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}
.link-card-links a:hover { color: var(--primary); }
.link-card-links a svg { flex-shrink: 0; opacity: 0.75; }
.link-card-links a:hover svg { opacity: 1; }

/* CTA */
.cta-section { padding: 4rem 0 6rem; }
.cta-box {
    text-align: center; padding: 4rem 2rem;
    background: linear-gradient(135deg, hsl(0 75% 48% / 0.15), hsl(220 10% 14%));
    border: 1px solid hsl(0 75% 48% / 0.3); border-radius: calc(var(--radius) * 2);
}
.cta-box h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.cta-box p { color: var(--muted-foreground); max-width: 600px; margin: 0 auto 2rem; }
.cta-benefits { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 2rem; }
.cta-benefits span {
    padding: 0.4rem 1rem; background: var(--card); border: 1px solid var(--border);
    border-radius: 999px; font-size: 0.8rem; color: var(--muted-foreground);
}
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* Footer */
.site-footer { background: hsl(220 10% 8%); border-top: 1px solid var(--border); padding-top: 1.5rem; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem 1.25rem;
    padding-bottom: 0.75rem;
}
.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}
.footer-brand img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0;
    flex-shrink: 0;
}
.footer-brand h3 { font-size: 0.88rem; margin-bottom: 0.2rem; }
.footer-brand p {
    color: var(--muted-foreground);
    font-size: 0.78rem;
    line-height: 1.35;
}
.footer-nipc { margin-top: 0.15rem; font-size: 0.72rem; color: var(--muted-foreground); }
.site-footer h4 { font-size: 0.78rem; margin-bottom: 0.45rem; color: var(--accent); }
.footer-grid > div > p {
    margin-bottom: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.78rem;
    line-height: 1.35;
}
.footer-links li { margin-bottom: 0.2rem; }
.footer-links a { color: var(--muted-foreground); font-size: 0.78rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    align-self: stretch;
    gap: 0.75rem 1.25rem;
}
.footer-bottom-brand-col {
    grid-column: 1;
    justify-self: start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-bottom-logo-wrap {
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 2px 8px hsl(0 0% 0% / 0.35);
}
.footer-bottom-logo-link {
    display: block;
    line-height: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-bottom-logo-link:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}
.footer-bottom-logo {
    height: 78px;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
    opacity: 0.92;
}
.footer-social {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    color: #fff;
    box-shadow: 0 4px 16px hsl(0 0% 0% / 0.28);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        filter 0.22s ease;
}
.footer-social-link:hover {
    transform: translateY(-3px) scale(1.06);
    filter: brightness(1.08);
}
.footer-social-link--whatsapp {
    background: #25d366;
    box-shadow: 0 4px 16px hsl(142 70% 40% / 0.4);
}
.footer-social-link--whatsapp:hover {
    box-shadow: 0 8px 22px hsl(142 70% 40% / 0.5);
}
.footer-social-link--instagram {
    background: linear-gradient(45deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
    box-shadow: 0 4px 16px hsl(330 70% 45% / 0.35);
}
.footer-social-link--instagram:hover {
    box-shadow: 0 8px 22px hsl(330 70% 45% / 0.45);
}
.footer-social-link--facebook {
    background: #1877f2;
    box-shadow: 0 4px 16px hsl(214 89% 52% / 0.4);
}
.footer-social-link--facebook:hover {
    box-shadow: 0 8px 22px hsl(214 89% 52% / 0.5);
}
.footer-social-link--maps,
.footer-social-link--reviews {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    filter: none;
}
.footer-social-link--maps:hover,
.footer-social-link--reviews:hover {
    transform: none;
    filter: none;
}
.footer-social-link--maps:hover .footer-social-brand,
.footer-social-link--reviews:hover .footer-social-brand {
    transform: translateY(-3px) scale(1.06);
}
.footer-social-brand {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
        0 4px 14px hsl(0 0% 0% / 0.32),
        inset 0 0 0 1px hsl(0 0% 100% / 0.06);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}
.footer-social-brand--maps {
    background: linear-gradient(180deg, #fff 0%, #f3f4f6 100%);
    padding: 6px;
}
.footer-social-brand--maps img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 1px 2px hsl(0 70% 45% / 0.25));
}
.footer-social-link--maps:hover .footer-social-brand--maps {
    box-shadow:
        0 8px 22px hsl(0 70% 45% / 0.28),
        inset 0 0 0 1px hsl(0 0% 100% / 0.12);
}
.footer-social-brand--reviews {
    background: #202124;
    padding: 0;
}
.footer-social-brand--reviews svg {
    width: 24px;
    height: 24px;
    display: block;
}
.footer-social-link--reviews:hover .footer-social-brand--reviews {
    box-shadow:
        0 8px 22px hsl(214 89% 52% / 0.22),
        0 0 0 1px hsl(0 0% 100% / 0.08);
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 0.65rem 0 0.75rem;
    text-align: center;
}
.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
}
.footer-visits {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0.2rem 0.5rem;
    border: 1px solid hsl(0 0% 100% / 0.06);
    border-radius: 999px;
    background: hsl(220 12% 10% / 0.35);
    color: var(--muted-foreground);
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: 0.55rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    line-height: 1.2;
    opacity: 0.55;
}
.footer-visits-count {
    color: hsl(0 75% 58%);
    font-weight: 700;
    font-size: 0.6rem;
    letter-spacing: 0.03em;
}
.footer-bottom p { color: var(--muted-foreground); font-size: 0.72rem; line-height: 1.3; }
.footer-bottom-legal {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    align-self: stretch;
    gap: 0.35rem 1rem;
}
.footer-privacy-link {
    grid-column: 1;
    justify-self: start;
    font-size: 0.68rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-privacy-link:hover {
    color: var(--primary);
}
.footer-copy {
    grid-column: 2;
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.72rem;
    line-height: 1.3;
    text-align: center;
}

/* Página legal */
.legal-page .section-header h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
}
.legal-lede {
    max-width: 52rem;
}
.legal-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}
.legal-block {
    padding: 1.15rem 1.25rem;
}
.legal-block h2 {
    font-size: 0.95rem;
    margin-bottom: 0.55rem;
    color: var(--accent);
}
.legal-block p,
.legal-block li {
    color: var(--muted-foreground);
    font-size: 0.84rem;
    line-height: 1.55;
}
.legal-block p + p,
.legal-block ul {
    margin-top: 0.65rem;
}
.legal-block a {
    color: var(--primary);
}
.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

@media (max-width: 520px) {
    .footer-bottom-row {
        grid-template-columns: 1fr;
        row-gap: 0.75rem;
    }
    .footer-bottom-logo-wrap {
        grid-column: 1;
        justify-self: start;
    }
    .footer-bottom-legal {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }
    .footer-privacy-link {
        justify-self: start;
    }
    .footer-copy {
        grid-column: 1;
        text-align: left;
    }
    .footer-social {
        grid-column: 1;
        justify-self: center;
    }
}

/* Botões flutuantes */
.float-actions {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.25rem);
    transition:
        opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.32s;
    pointer-events: none;
}
.float-actions.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.float-actions .scroll-top-btn {
    opacity: 0;
    transform: translateY(0.65rem) scale(0.9);
    transition:
        opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}
.float-actions.is-visible .scroll-top-btn {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.03s;
}
.float-actions:not(.is-visible) .scroll-top-btn {
    transition-delay: 0s;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1300px) and (min-width: 1101px) {
    .nav-links > a,
    .nav-dropdown-trigger {
        padding: 0.34rem 0.55rem;
        font-size: 0.62rem;
    }
}
@media (max-width: 1024px) {
    .split-layout, .tab-grid, .rules-grid { grid-template-columns: 1fr; }
    .event-panel-expand-inner .categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .event-panel-expand-inner .event-table {
        font-size: 0.76rem;
    }

    .event-panel-expand-inner .event-table th,
    .event-panel-expand-inner .event-table td {
        padding: 0.45rem 0.5rem;
    }

    .event-panel-expand-inner .rules-box,
    .event-panel-expand-inner .category-card {
        padding: 0.95rem;
    }

    .score-zones {
        gap: 0.4rem;
    }

    .zone {
        font-size: 0.74rem;
        padding: 0.3rem 0.6rem;
    }
}
@media (max-width: 1100px) {
    .nav-toggle { display: flex; }

    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: hsl(220 10% 4% / 0.65);
        backdrop-filter: blur(6px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s, visibility 0.35s;
        z-index: 1000;
    }
    .nav-overlay.visible {
        opacity: 1;
        visibility: visible;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(360px, 88vw);
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        background: hsl(220 10% 9% / 0.98);
        border-left: 1px solid hsl(0 75% 48% / 0.25);
        box-shadow: -20px 0 60px hsl(0 0% 0% / 0.5);
        transform: translateX(105%);
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
        overflow-y: auto;
    }
    .main-nav.open {
        transform: translateX(0);
    }

    .nav-panel-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid var(--border);
        flex-shrink: 0;
    }
    .nav-panel-label {
        font-family: var(--font-display);
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--primary);
    }
    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: hsl(220 10% 14%);
        border: 1px solid var(--border);
        border-radius: 10px;
        color: var(--foreground);
        cursor: pointer;
        transition: border-color 0.2s, color 0.2s;
    }
    .nav-close:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 1.25rem;
        background: none;
        border: none;
        border-radius: 0;
        backdrop-filter: none;
    }
    .nav-links > a,
    .nav-dropdown-trigger,
    .nav-restricted {
        width: 100%;
        padding: 1rem 1rem;
        font-size: 0.85rem;
        border-radius: var(--radius);
        border-bottom: 1px solid hsl(220 10% 18% / 0.6);
        justify-content: flex-start;
        gap: 0.65rem;
    }
    .nav-restricted {
        margin-left: 0;
        border-left: none;
        margin-top: 0.35rem;
        border-top: 1px solid hsl(220 10% 18% / 0.6);
    }
    .nav-icon {
        width: 18px;
        height: 18px;
        opacity: 0.85;
    }
    .nav-links > a.nav-active,
    .nav-dropdown-trigger.nav-active {
        background: hsl(0 75% 48% / 0.08);
        border-left: 3px solid var(--primary);
        padding-left: calc(1rem - 3px);
    }
    .nav-dropdown { width: 100%; }
    .nav-dropdown-trigger {
        justify-content: flex-start;
    }
    .nav-dropdown-trigger .nav-chevron {
        margin-left: auto;
    }
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: hsl(220 10% 12% / 0.5);
        border-radius: var(--radius);
        margin: 0 0 0.5rem;
        padding: 0.35rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s, margin 0.35s;
    }
    .nav-dropdown-menu::before { display: none; }
    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 320px;
        margin-bottom: 0.5rem;
        padding: 0.35rem;
    }
    .nav-dropdown:hover .nav-dropdown-menu { transform: none; }
    .nav-dropdown-menu a {
        padding: 0.85rem 1rem;
        font-size: 0.8rem;
    }
    .nav-dd-feature {
        padding: 0.85rem 1rem !important;
    }

    body.nav-open { overflow: hidden; }
}
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .hero-actions-bar { flex-direction: column; width: 100%; gap: 0.75rem; }
    .btn-tac { width: 100%; }
    .info-tabs-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-tab-btn {
        border-bottom: 1px solid hsl(220 10% 18%);
        padding: 0.85rem 0.5rem;
        font-size: 0.62rem;
    }
    .info-tab-btn:nth-child(2n) { border-right: none; }
    .info-tabs-panels { padding: 1.25rem; }
    .info-panel-head { flex-direction: column; gap: 0.75rem; }
    .float-actions {
        bottom: 1rem;
        right: 1rem;
    }
}
