/* ==============================================
   VARIABLES & RESET
   ============================================== */
:root {
    --color-bg: #000000;
    --color-text: #FFFFFF;
    --color-accent: #1A6B5A;
    --color-accent-light: #25937A;
    --color-surface: #0D0D0D;
    --color-muted: #555555;
    --color-border: #1A1A1A;

    --font-display: 'Montserrat', sans-serif;
    --font-ui: 'Inter', sans-serif;

    --section-padding: clamp(80px, 12vw, 160px);
    --container-padding: clamp(24px, 5vw, 80px);
}

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

html {
    scroll-behavior: auto;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-ui);
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

/* ==============================================
   CUSTOM CURSOR — DESKTOP ONLY
   ============================================== */
.cursor,
.cursor-follower {
    display: none;
    pointer-events: none;
}

@media (hover: hover) {
    body { cursor: none; }

    .cursor {
        display: block;
        width: 8px;
        height: 8px;
        background: var(--color-accent);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background 0.2s;
    }

    .cursor-follower {
        display: block;
        width: 36px;
        height: 36px;
        border: 1.5px solid rgba(26, 107, 90, 0.65);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: width 0.3s, height 0.3s, border-color 0.3s;
    }

    .cursor.hovered {
        width: 12px;
        height: 12px;
        background: var(--color-accent-light);
    }

    .cursor-follower.hovered {
        width: 56px;
        height: 56px;
        border-color: var(--color-accent-light);
    }
}

/* ==============================================
   CONTAINER
   ============================================== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ==============================================
   SECTION DIVIDER
   ============================================== */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-accent), transparent);
    opacity: 0.35;
}

/* ==============================================
   TYPOGRAPHY
   ============================================== */
.section-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: clamp(40px, 6vw, 80px);
    line-height: 1.1;
}

.dot,
.accent-dot {
    color: var(--color-accent);
}

/* ==============================================
   NAVBAR
   ============================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px var(--container-padding);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.93);
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.nav-logo img {
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text);
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--color-accent-light); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--color-text);
    transition: transform 0.3s, opacity 0.3s;
}

/* ==============================================
   MOBILE OVERLAY
   ============================================== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: var(--container-padding);
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.4rem;
    padding: 10px;
    min-height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-close:hover { color: var(--color-accent-light); }

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateY(30px);
}

.mobile-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.mobile-overlay.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.05s; }
.mobile-overlay.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.12s; }
.mobile-overlay.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.19s; }
.mobile-overlay.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.26s; }

.mobile-nav-links a {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 9vw, 4.5rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text);
    transition: color 0.3s;
    display: block;
    min-height: 48px;
}

.mobile-nav-links a:hover { color: var(--color-accent-light); }

/* ==============================================
   HERO
   ============================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px var(--container-padding) 80px;
    position: relative;
    overflow: hidden;
}

/* Subtle grid background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26, 107, 90, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 107, 90, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 52px;
    will-change: transform;
}

.hero-logo img {
    max-width: min(28vw, 160px);
    height: auto;
    object-fit: contain;
}

.hero-tagline {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2em;
    perspective: 800px;
}

.hero-tagline .word {
    display: inline-block;
    opacity: 0;
    transform: rotateX(-90deg);
    transform-origin: 50% 100%;
    will-change: transform, opacity;
}

.hero-sub {
    font-family: var(--font-ui);
    font-size: clamp(0.65rem, 1.3vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-muted);
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.2; transform: scaleY(0.35); }
}

/* ==============================================
   SOBRE / MANIFESTO
   ============================================== */
.sobre {
    padding: var(--section-padding) 0;
    background: var(--color-surface);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: clamp(40px, 8vw, 120px);
    align-items: start;
}

.sobre-left .section-title {
    margin-bottom: clamp(28px, 4vw, 48px);
}

.sobre-deco {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.deco-dot {
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: dotPulse 2.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(26,107,90,.6); }
    50% { transform: scale(1.5); opacity: 0.6; box-shadow: 0 0 0 8px rgba(26,107,90,0); }
}

.deco-line {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
}

.sobre-right {
    overflow: hidden;
}

.manifesto-p {
    font-family: var(--font-ui);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 400;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    will-change: transform, opacity;
}

.manifesto-p:last-child { margin-bottom: 0; }

/* ==============================================
   SERVIÇOS
   ============================================== */
.servicos {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
    perspective: 1200px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 28px);
}

.servico-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.servico-card:hover {
    transform: scale(1.02) translateZ(8px);
    border-color: rgba(26, 107, 90, 0.5);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(26, 107, 90, 0.15);
}

.card-border-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--color-accent);
    transition: height 0.4s ease;
}

.servico-card:hover .card-border-left { height: 100%; }

.card-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 4.5vw, 5rem);
    font-weight: 900;
    color: var(--color-accent);
    opacity: 0.25;
    display: block;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.card-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 22px;
}

.servico-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.servico-card p {
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    color: var(--color-muted);
    line-height: 1.75;
    font-weight: 400;
}

/* ==============================================
   PORTFÓLIO
   ============================================== */
.portfolio-section {
    padding: var(--section-padding) 0;
    background: var(--color-surface);
}

.portfolio-section .container {
    margin-bottom: clamp(32px, 5vw, 60px);
}

.gallery-masonry {
    padding: 0 clamp(16px, 4vw, 60px);
    column-count: 4;
    column-gap: 10px;
}

.gallery-item {
    display: block;
    break-inside: avoid;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.8) saturate(0.85);
    will-change: transform, filter;
}

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

.no-photos {
    font-family: var(--font-ui);
    color: var(--color-muted);
    font-size: 1rem;
    padding: 60px;
    text-align: center;
}


/* ==============================================
   CONTATO
   ============================================== */
.contato {
    padding: var(--section-padding) 0;
    background: var(--color-surface);
}

.contato-title {
    margin-bottom: clamp(40px, 6vw, 80px);
    overflow: hidden;
}

/* character spans injected by JS */
.contato-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    will-change: transform, opacity;
}

.contato-title .char-space {
    display: inline-block;
    width: 0.3em;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: start;
}

.contato-info .reveal-text {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 44px;
    font-weight: 400;
}

.contato-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    min-height: 56px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.25s;
    will-change: transform;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-text);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent-light);
    transform: translateY(-3px);
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 16px 20px;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 400;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    min-height: 56px;
    -webkit-appearance: none;
    appearance: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    background: #050505;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-muted);
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
    padding: clamp(40px, 6vw, 80px) 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.footer-logo img {
    height: 30px;
    width: auto;
    object-fit: contain;
    opacity: 0.75;
}

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

.footer-links a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-muted);
    transition: color 0.3s;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.footer-links a:hover { color: var(--color-accent-light); }

.footer-copy {
    font-size: 0.75rem;
    color: var(--color-muted);
    letter-spacing: 0.05em;
    font-weight: 400;
}

/* ==============================================
   INITIAL ANIMATION STATES (GSAP targets)
   ============================================== */

/* Generic reveal */
.reveal-title,
.reveal-text,
.reveal-card,
.reveal-btn,
.reveal-input {
    opacity: 0;
    transform: translateY(40px);
}

/* Gallery — clipPath wipe from bottom */
.gallery-item {
    clip-path: inset(0 0 100% 0);
}

/* Service cards — 3D perspective entry */
.servico-card {
    opacity: 0;
    transform: translateX(50px) rotateY(-18deg);
    transform-origin: left center;
}

/* Manifesto paragraphs — slide from right (desktop pinned) */
.manifesto-p {
    opacity: 0;
    transform: translateX(60px);
}


/* ==============================================
   RESPONSIVE — TABLET (≤1023px)
   ============================================== */
@media (max-width: 1023px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .sobre-grid { grid-template-columns: 1fr; }
    .sobre-deco { display: none; }

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

    .gallery-masonry { column-count: 3; }
    .contato-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   RESPONSIVE — MOBILE (≤767px)
   ============================================== */
@media (max-width: 767px) {
    .hero-logo img { max-width: 50vw; }
    .hero { padding-left: 24px; padding-right: 24px; }
    .hero-tagline { font-size: clamp(2.4rem, 11vw, 3.5rem); }

    .servicos-grid { grid-template-columns: 1fr; }
    .depoimentos-grid { grid-template-columns: 1fr; }

    .gallery-masonry {
        column-count: 2;
        column-gap: 8px;
        padding: 0 clamp(12px, 4vw, 24px);
    }
    .gallery-item { margin-bottom: 8px; }

    .contato-buttons .btn,
    .contato-form .btn { width: 100%; }

    .bg-num { display: none; }
    .hero-bg-text { font-size: clamp(8rem, 28vw, 14rem); }
    .marquee-track { font-size: 0.75rem; gap: 24px; }
    .mq-dot { font-size: 0.75rem; }
}

/* ==============================================
   FILM GRAIN
   ============================================== */
.grain {
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    opacity: 0.055;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 300px 300px;
}

/* ==============================================
   SCROLL PROGRESS BAR
   ============================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(to right, var(--color-accent), var(--color-accent-light));
    z-index: 9999;
    pointer-events: none;
    transition: width 0.08s linear;
}

/* ==============================================
   HERO — GHOST TEXT BACKGROUND
   ============================================== */
.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(10rem, 22vw, 20rem);
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(26, 107, 90, 0.07);
    line-height: 0.85;
    text-align: center;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
    white-space: nowrap;
    will-change: transform;
    z-index: 0;
}

/* ==============================================
   MARQUEE
   ============================================== */
.marquee-wrapper {
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
}

.marquee-inner {
    display: flex;
    will-change: transform;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 36px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-muted);
}

.mq-dot {
    color: var(--color-accent);
    font-size: 1.4rem;
    line-height: 1;
}

/* ==============================================
   SECTION BACKGROUND NUMBERS
   ============================================== */
.bg-num {
    position: absolute;
    right: -0.02em;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(12rem, 26vw, 22rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.028);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: -0.06em;
}

/* Sections that contain bg-num need relative positioning */
.sobre,
.servicos,
.portfolio-section,
.contato {
    position: relative;
}

/* ==============================================
   GLITCH ANIMATION (hero tagline)
   ============================================== */
@keyframes glitchSkew {
    0%   { transform: skewX(0deg); }
    20%  { transform: skewX(5deg); clip-path: inset(20% 0 50% 0); }
    40%  { transform: skewX(-4deg) translateX(-3px); clip-path: inset(60% 0 10% 0); }
    60%  { transform: skewX(2deg); clip-path: inset(30% 0 40% 0); }
    80%  { transform: skewX(-1deg); clip-path: none; }
    100% { transform: skewX(0deg); clip-path: none; }
}

/* ==============================================
   SERVICE CARD — number hover glow
   ============================================== */
.servico-card:hover .card-number {
    opacity: 0.7;
    transition: opacity 0.35s ease;
    text-shadow: 0 0 30px rgba(26, 107, 90, 0.4);
}

/* ==============================================
   SECTION DIVIDERS — animated draw
   ============================================== */
.section-divider {
    transform-origin: center;
}

/* ==============================================
   EVENTOS
   ============================================== */
.eventos {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.eventos-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 5vw, 80px);
    align-items: end;
    margin-bottom: clamp(40px, 6vw, 72px);
}

.eventos-header .section-title {
    margin-bottom: 0;
}

.eventos-sub {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    font-weight: 400;
    padding-bottom: 6px;
}

.eventos-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--color-border);
    margin-bottom: clamp(32px, 5vw, 56px);
}

.evento-item {
    padding: clamp(18px, 2.5vw, 28px) 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.evento-item:nth-child(odd) {
    border-right: 1px solid var(--color-border);
    padding-right: clamp(24px, 3vw, 48px);
}

.evento-item:nth-child(even) {
    padding-left: clamp(24px, 3vw, 48px);
}

.evento-nome {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.3rem, 2.8vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--color-text);
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.evento-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.45s ease;
}

.evento-item:hover::after { width: 100%; }
.evento-item:hover .evento-nome {
    color: var(--color-accent-light);
    transform: translateX(8px);
}

.eventos-area {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: var(--color-muted);
    line-height: 1.75;
    font-weight: 400;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
}

.eventos-area strong { color: rgba(255,255,255,0.75); }

/* ==============================================
   FAQ
   ============================================== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--color-surface);
}

.faq .section-title {
    margin-bottom: clamp(32px, 5vw, 56px);
}

.faq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--color-border);
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: clamp(18px, 2.5vw, 28px) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.faq-question span:first-child {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text);
    transition: color 0.3s;
}

.faq-question:hover span:first-child { color: var(--color-accent-light); }

.faq-icon {
    font-family: var(--font-ui);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
    flex-shrink: 0;
    transition: transform 0.35s ease;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.45s ease;
}

.faq-answer[hidden] {
    display: block !important; /* override hidden for CSS transition */
    visibility: hidden;
}

.faq-item.open .faq-answer {
    visibility: visible;
}

.faq-answer p {
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    padding-bottom: clamp(18px, 2.5vw, 28px);
    font-weight: 400;
}

.faq-answer strong { color: rgba(255,255,255,0.9); }

/* ==============================================
   FOOTER — address
   ============================================== */
.footer-address {
    font-style: normal;
    font-size: 0.8rem;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-address a {
    color: var(--color-muted);
    transition: color 0.3s;
}

.footer-address a:hover { color: var(--color-accent-light); }

/* ==============================================
   RESPONSIVE — EVENTOS E FAQ
   ============================================== */
@media (max-width: 1023px) {
    .eventos-header { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .eventos-list { grid-template-columns: 1fr; }
    .evento-item:nth-child(odd) { border-right: none; padding-right: 0; }
    .evento-item:nth-child(even) { padding-left: 0; }
    .evento-nome { font-size: clamp(1.2rem, 6vw, 1.8rem); }
}
