/* ========================================
   POKELENSTCG — STYLE GUIDE
   ======================================== */

/* ── Variáveis ── */
:root {
    --blue:         #2596be;
    --blue-dim:     #0f3a4a;
    --blue-border:  #1a5068;
    --blue-hover:   #174460;
    --blue-strong:  #2596be;

    --teal-light:   #8ff8f5;
    --teal-mid:     #cdeff5;
    --teal-dark:    #399491;

    --text:         #ffffff;
    --text-muted:   #b0c4cc;
    --text-faint:   #7a9aa8;
    --text-body:    #e8f4f8;

    --red:          #fd4344;

    --font-display: 'Sohne', 'Helvetica Neue', sans-serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    --transition: 0.3s ease-out;
    --shadow-sm:  0 2px 8px  #000000;
    --shadow-md:  0 4px 16px #000000;
    --shadow-lg:  0 12px 32px #000000;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Body ── */
body {
    font-family: var(--font-body);
    background-color: var(--bg-ground);
    background-image: url('/images/hexagon-background.png');
    background-size: 740px 488px;
    background-attachment: fixed;
    background-position: 0 0;
    background-repeat: repeat;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Overlay subtle para melhor legibilidade do texto */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(11, 15, 17, 0.9);

    pointer-events: none;
    z-index: -1;
}

/* ── Tipografia ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-body);
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--teal-light);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--text); }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
    .container { padding: 0 var(--spacing-md); }
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--blue);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 var(--spacing-lg);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 10px;
}

.logo-text { font-family: var(--font-display); letter-spacing: -0.5px; }

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text);
    transition: width var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text);
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: var(--blue);
        flex-direction: column;
        width: 220px;
        padding: 20px;
        gap: var(--spacing-md);
        display: none;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }
    .nav-links.active { display: flex; }
    .nav-links a { font-size: 0.9rem; }
}

/* ========================================
   HERO
   ======================================== */

.hero {
    position: relative;
    padding: var(--spacing-xl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-text { padding-right: var(--spacing-xl); padding-left: var(--spacing-lg); }

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.hero-tagline {
    font-size: 1.75rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--teal-mid);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Decorative hexagons */
.hex-decoration {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
}
.hex-1 {
    width: 400px; height: 400px;
    border: 2px solid var(--blue);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 10%; left: -200px;
}
.hex-2 {
    width: 300px; height: 300px;
    border: 2px solid var(--blue);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    bottom: 10%; right: -150px;
}

/* Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-20px); }
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border-radius: 40px;
    border: 12px solid #1a1a1a;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 150px; height: 25px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: var(--spacing-lg); }
    .hero-text { padding-right: 0; text-align: center; }
    .hero-title { font-size: 3rem; }
    .cta-buttons { justify-content: center; }
    .phone-mockup { width: 240px; height: 480px; }
}

@media (max-width: 768px) {
    .hero { min-height: auto; padding: 40px 0; }
    .hero-content { gap: 40px; text-align: center; }
    .hero-title { font-size: 2.4rem; line-height: 1.1; }
    .hero-tagline { font-size: 1.2rem; }
    .hero-description { font-size: 1rem; max-width: none; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .phone-mockup { width: 210px; height: 420px; }
}

/* ========================================
   BOTÕES
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--blue);
    color: var(--text);
}
.btn-primary:hover {
    background: #1e7ea3;
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text);
}
.btn-secondary:hover {
    background: var(--text);
    color: #111;
    transform: translateY(-2px);
}

.btn-disabled {
    border-color: rgba(253, 67, 68, 0.5);
    background: rgba(253, 67, 68, 0.08);
}
.btn-disabled small {
    display: block;
    font-size: 0.65rem;
    color: var(--red);
    line-height: 1;
}
.btn-disabled span { font-size: 0.95rem; font-weight: 600; }

.btn-store-icon       { width: 28px; height: 28px; object-fit: contain; }
.btn-store-icon-small { width: 22px; height: 22px; }

.btn-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .btn { width: 100%; justify-content: center; max-width: 320px; }
}

/* ========================================
   OFFLINE FEATURE SECTION
   ======================================== */

.offline-feature {
    padding: var(--spacing-xl) 0;
    background: #0d2a38;
    border-top:    1px solid var(--blue-border);
    border-bottom: 1px solid var(--blue-border);
}

.offline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.offline-content h2 {
    margin-top: var(--spacing-sm);
    color: var(--text);
    margin-bottom: var(--spacing-sm);
}

.offline-subtitle {
    font-size: 1.25rem;
    color: var(--teal-light);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.offline-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: var(--spacing-sm);
}

.offline-list li {
    display: flex;
    gap: var(--spacing-md);
    font-size: 1.1rem;
    align-items: flex-start;
    color: var(--text-body);
}

.check {
    color: var(--teal-light);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.offline-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-placeholder {
    width: 260px;
    height: 520px;
    background: var(--blue-dim);
    border: 2px solid var(--blue-strong);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px #000000;
}

.feature-placeholder img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
    .offline-grid { grid-template-columns: 1fr; gap: 40px; }
    .offline-content { text-align: center; }
    .offline-list li { font-size: 0.95rem; }
    .feature-placeholder { width: 210px; height: 420px; }
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    color: var(--text);
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    text-align: center;
    color: var(--teal-light);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
}

.features-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.features-viewport {
    flex: 0 1 620px;
    min-width: 0;
    overflow: hidden;
    padding: 6px 0 18px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.features-showcase {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.feature-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 0 0 260px;
    opacity: var(--feature-opacity, 0.35);
    transform: scale(var(--feature-scale, 0.92));
    transition: opacity var(--transition), transform var(--transition);
}

.features-carousel-btn {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-dim);
    border: 1px solid var(--blue-border);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 2;
}
.features-carousel-btn:hover {
    background: var(--blue-hover);
    border-color: var(--blue-strong);
}
.features-carousel-btn:disabled {
    opacity: 0.35;
    cursor: default;
}
.features-carousel-btn:disabled:hover {
    background: var(--blue-dim);
    border-color: var(--blue-border);
}

.screenshot-item {
    display: flex;
    justify-content: center;
    transition: transform var(--transition);
}
.screenshot-item:hover { transform: translateY(-4px); }

.screenshot-item img {
    width: 210px;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.feature-card {
    background: var(--blue-dim);
    border: 1px solid var(--blue-border);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: 0 4px 12px #000000;
}
.feature-card:hover {
    background: var(--blue-hover);
    border-color: var(--blue-strong);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px #000000;
}
.feature-card h3 { color: var(--text); font-size: 1.05rem; margin-bottom: 10px; }
.feature-card p  { color: var(--teal-mid); font-size: 0.9rem; line-height: 1.5; margin-bottom: 0; }

@media (max-width: 768px) {
    .feature-group { flex: 0 0 220px; align-items: center; }
    .screenshot-item img { width: 190px; height: 380px; }
    .feature-card { width: 100%; max-width: 320px; }
    .features-carousel-btn { width: 38px; height: 38px; }
    .features-viewport {
        max-width: 300px;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .features-showcase { transition: none !important; }
}

/* ========================================
   EVENTOS HOME SECTION
   ======================================== */

.eventos-home {
    padding: var(--spacing-xl) 0;
    background: #0a1e28;
    border-top:    1px solid var(--blue-border);
    border-bottom: 1px solid var(--blue-border);
}

.eventos-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.eventos-left { padding-right: var(--spacing-lg); }

.eventos-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal-light);
    border: 1px solid var(--blue-border);
    background: var(--blue-dim);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.eventos-left h2 { font-size: 2.25rem; color: var(--text); margin-bottom: 1rem; line-height: 1.2; }
.eventos-left p  { color: var(--teal-mid); font-size: 1.05rem; margin-bottom: 2rem; }
.eventos-cta     { display: flex; gap: 1rem; flex-wrap: wrap; }

.eventos-right {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--blue-border);
    border-radius: 16px;
    background: var(--blue-dim);
    overflow: hidden;
}

.eventos-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    transition: background var(--transition);
}
.eventos-item:hover { background: var(--blue-hover); }

.eventos-item-icon { font-size: 1.75rem; flex-shrink: 0; width: 48px; text-align: center; }
.eventos-item-text { display: flex; flex-direction: column; gap: 4px; }
.eventos-item-text strong { color: var(--text); font-size: 1rem; font-weight: 600; }
.eventos-item-text span   { color: var(--teal-mid); font-size: 0.9rem; line-height: 1.5; }

.eventos-divider { height: 1px; background: var(--blue-border); margin: 0 1.5rem; }

@media (max-width: 900px) {
    .eventos-split { grid-template-columns: 1fr; }
    .eventos-left  { padding-right: 0; }
}

/* ========================================
   DOWNLOAD SECTION
   ======================================== */

.download {
    padding: var(--spacing-xl) 0;
    background: #2596be;
    border-top:    1px solid #1e7ea3;
    border-bottom: 1px solid #1e7ea3;
}

.download .section-subtitle { color: var(--teal-light); }

.download-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: #1e7ea3;
    border: 2px solid #ffffff;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 0.75rem;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
    font-weight: 500;
}
.download-btn:hover {
    background: #155f7a;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: var(--text);
}

.download-btn-small { padding: 12px 18px; transform: scale(0.88); }
.download-btn-small .store-icon  { width: 32px; height: 32px; }
.download-btn-small strong { font-size: 1rem; }
.download-btn-small small  { font-size: 0.72rem; }

.store-icon { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.store-text small  { display: block; font-size: 0.8rem; opacity: 0.8; }
.store-text strong { display: block; font-size: 1.125rem; font-weight: 700; }

.disabled-store {
    background: #2a1a1a;
    border-color: #7a2020;
}
.disabled-store small  { color: var(--red); font-weight: 600; }
.disabled-store:hover  { background: #3a1a1a; border-color: var(--red); }

@media (max-width: 768px) {
    .download-buttons { flex-direction: column; align-items: center; }
    .download-btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ========================================
   HISTORIA SECTION
   ======================================== */

.historia {
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--blue-border);
}

.historia-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

@media (max-width: 768px) {
    .historia-grid {
        grid-template-columns: 1fr;
    }
}

/* Autor card */
.historia-autor {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--blue-dim);
    border: 1px solid var(--blue-border);
    border-radius: 18px;
    padding: var(--spacing-md);
    text-align: center;
}

.autor-photo-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--blue-strong);
    box-shadow: 0 0 0 6px rgba(37,150,190,.15);
    flex-shrink: 0;
}

.autor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.autor-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.autor-nome {
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 700;
}

.autor-titulo {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.autor-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(10, 102, 194, 0.2);
    border: 1px solid rgba(10, 102, 194, 0.4);
    color: #7ab3f5;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition);
}

.autor-linkedin:hover {
    background: rgba(10, 102, 194, 0.35);
    border-color: rgba(10, 102, 194, 0.7);
    color: #a8ccff;
}

/* Texto */
.historia-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: var(--spacing-xs);
}

.historia-texto h2 {
    font-size: 1.9rem;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: var(--spacing-md);
}

.historia-texto p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: var(--spacing-sm);
}

/* Timeline marcos */
.historia-marco-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: var(--spacing-md);
    border-left: 2px solid var(--blue-border);
    padding-left: var(--spacing-sm);
}

.historia-marco {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
    padding: 10px 0;
    position: relative;
}

.historia-marco::before {
    content: '';
    position: absolute;
    left: calc(-1rem - 5px);
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue-strong);
    box-shadow: 0 0 0 3px rgba(37,150,190,.2);
}

.marco-ano {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--teal-light);
    min-width: 40px;
    flex-shrink: 0;
}

.marco-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========================================
   COMMUNITY SECTION
   ======================================== */

.community {
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--blue-border);
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(2, 220px);
    justify-content: center;
    gap: var(--spacing-lg);
}

.social-card {
    background: var(--blue-dim);
    border: 1px solid var(--blue-border);
    border-radius: 18px;
    padding: 24px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all var(--transition);
    box-shadow: 0 4px 12px #000000;
}
.social-card:hover {
    background: var(--blue-hover);
    border-color: var(--blue-strong);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px #000000;
}
.social-card h3 { color: var(--text); font-size: 1rem; margin-bottom: 0; }
.social-card p  { color: var(--teal-light); font-size: 0.95rem; }

.social-icon-img {
    object-fit: contain;
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
}

@media (max-width: 768px) { .socials-grid { grid-template-columns: 1fr; } }

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    padding: 5rem 0;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--blue-dim);
    border: 1px solid var(--blue-border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 8px #000000;
}

.faq-item summary {
    font-size: 1rem;
    color: var(--text);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after       { content: '+'; font-size: 1.4rem; color: var(--teal-light); flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }

.faq-item p {
    margin-top: 0.75rem;
    color: var(--teal-mid);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: rgba(8, 8, 8, 0.9);
    color: var(--text);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--blue-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 { color: var(--teal-light); font-size: 1rem; margin-bottom: var(--spacing-md); }
.footer-section p  { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: var(--spacing-sm); }

.footer-section a { color: var(--text-muted); font-size: 0.95rem; transition: color var(--transition); }
.footer-section a:hover { color: var(--teal-light); }

.footer-bottom { text-align: center; font-size: 0.9rem; color: var(--text-faint); }
.footer-bottom p { color: var(--text-faint); margin-bottom: 0; }
.footer-disclaimer { margin-top: 1rem; }

@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; gap: var(--spacing-lg); text-align: center; }
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

@media (prefers-reduced-motion: no-preference) {
    .feature-card,
    .social-card,
    .screenshot-item {
        opacity: 0;
        animation: fadeInUp 0.6s ease-out forwards;
    }
    .feature-card:nth-child(1) { animation-delay: 0.1s; }
    .feature-card:nth-child(2) { animation-delay: 0.2s; }
    .feature-card:nth-child(3) { animation-delay: 0.3s; }
    .feature-card:nth-child(4) { animation-delay: 0.4s; }
    .social-card:nth-child(1)  { animation-delay: 0.1s; }
    .social-card:nth-child(2)  { animation-delay: 0.2s; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media print {
    .navbar, .footer { display: none; }
}
