/* ============================================================
   DESIGN SYSTEM — Synapse / Atípico
   ============================================================ */
:root {
    /* Brand — Atípico */
    --at-teal:        #3DD6C8;
    --at-teal-dim:    rgba(61, 214, 200, 0.15);
    --at-teal-glow:   rgba(61, 214, 200, 0.35);
    --at-green:       #6BCB77;
    --at-green-dim:   rgba(107, 203, 119, 0.15);
    --at-pink:        #FF6B9D;
    --at-pink-dim:    rgba(255, 107, 157, 0.15);

    /* Brand — FavSpots */
    --fs-purple:      #9F7AEA;
    --fs-purple-dim:  rgba(159, 122, 234, 0.15);
    --fs-purple-glow: rgba(159, 122, 234, 0.4);

    /* Dark backgrounds */
    --bg-base:      #07111A;
    --bg-surface:   #0D1B27;
    --bg-card:      #112030;
    --bg-card-2:    #0F1E2D;

    /* Light backgrounds */
    --bg-white:   #ffffff;
    --bg-light:   #F4F7FA;
    --bg-light-2: #EEF3F8;

    /* Text */
    --text-white:   #F1F5F9;
    --text-muted:   #94A3B8;
    --text-dimmer:  #64748B;
    --text-dark:    #0F172A;
    --text-mid:     #334155;

    /* Borders */
    --border-dark:  rgba(255, 255, 255, 0.07);
    --border-dark2: rgba(255, 255, 255, 0.12);
    --border-light: rgba(0, 0, 0, 0.07);

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.12);
    --shadow-md:  0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg:  0 12px 32px rgba(0,0,0,0.2);
    --shadow-xl:  0 24px 48px rgba(0,0,0,0.28);

    /* Radii */
    --r-sm: 8px;
    --r:    14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-2xl:40px;

    --transition: 0.25s ease;
    --container: 1160px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg-base);
    color: var(--text-white);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-delay { transition-delay: 0.1s; }

/* ============================================================
   HEADER
   ============================================================ */
#main-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
    border-bottom: 1px solid transparent;
}

#main-header.scrolled {
    background: rgba(7, 17, 26, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: var(--border-dark);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    flex-shrink: 0;
    transition: opacity var(--transition);
}
.logo:hover { opacity: 0.75; }

.logo-img {
    width: 32px; height: 32px;
    object-fit: contain;
    filter: brightness(1.2);
}

#main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

#main-nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
    padding: 4px 0;
}
#main-nav a:hover { color: var(--text-white); }

.nav-cta {
    padding: 9px 20px;
    background: var(--at-teal);
    color: #07111A;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 0 0 0 var(--at-teal-glow);
}
.nav-cta:hover {
    background: #55E8DA;
    transform: translateY(-1px);
    box-shadow: 0 0 20px var(--at-teal-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Aurora glow */
.hero-aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: aurora-drift 10s infinite ease-in-out;
}

.aurora-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(61, 214, 200, 0.22), transparent 70%);
    top: -200px; left: -150px;
    animation-delay: 0s;
}
.aurora-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.14), transparent 70%);
    top: 50px; right: -100px;
    animation-delay: 3s;
}
.aurora-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(107, 203, 119, 0.1), transparent 70%);
    bottom: -100px; left: 40%;
    animation-delay: 6s;
}

@keyframes aurora-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -30px) scale(1.05); }
    66%       { transform: translate(-20px, 20px) scale(0.96); }
}

/* Grid lines */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 16px;
    background: rgba(61, 214, 200, 0.08);
    border: 1px solid rgba(61, 214, 200, 0.25);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--at-teal);
    margin-bottom: 28px;
}

.pulse-dot {
    width: 8px; height: 8px;
    background: var(--at-teal);
    border-radius: 50%;
    animation: pulse 2.4s infinite;
    flex-shrink: 0;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Hero Headline */
.hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-white);
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

.hero-content h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--at-teal) 0%, var(--at-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.78;
    margin-bottom: 40px;
    max-width: 480px;
}

/* Store Buttons */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    border-radius: var(--r);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.store-btn:hover { transform: translateY(-2px); }

.store-btn svg {
    width: 21px; height: 21px;
    flex-shrink: 0;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.store-label { font-size: 0.7rem; opacity: 0.75; font-weight: 400; }
.store-name  { font-size: 0.975rem; font-weight: 700; }

/* Solid (white) */
.store-btn-solid {
    background: var(--text-white);
    color: var(--bg-base);
}
.store-btn-solid:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(241,245,249,0.25);
}

/* Ghost (outlined white) */
.store-btn-ghost {
    background: rgba(255,255,255,0.06);
    color: var(--text-white);
    border-color: rgba(255,255,255,0.16);
}
.store-btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
}

/* Purple (FavSpots) */
.store-btn-purple {
    background: var(--fs-purple);
    color: #fff;
}
.store-btn-purple:hover {
    background: #B794F4;
    box-shadow: 0 8px 24px var(--fs-purple-glow);
}

/* Purple ghost */
.store-btn-purple-ghost {
    background: rgba(159,122,234,0.08);
    color: var(--fs-purple);
    border-color: rgba(159,122,234,0.3);
}
.store-btn-purple-ghost:hover {
    background: rgba(159,122,234,0.15);
    border-color: var(--fs-purple);
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.stat-item strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
}
.stat-item span {
    font-size: 0.78rem;
    color: var(--text-dimmer);
    font-weight: 500;
}

.stat-divider {
    width: 1px; height: 36px;
    background: var(--border-dark2);
}

/* Hero Visual */
.hero-visual { position: relative; }

.hero-frame {
    position: relative;
    border-radius: var(--r-xl);
    overflow: visible;
}

.hero-img {
    width: 100%;
    border-radius: var(--r-xl);
    border: 1px solid var(--border-dark2);
    box-shadow: var(--shadow-xl), 0 0 80px rgba(61,214,200,0.08);
    display: block;
}

.glow-ring {
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--r-xl) + 2px);
    background: linear-gradient(135deg, rgba(61,214,200,0.3), rgba(107,203,119,0.15), transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Floating Chips */
.hero-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(13, 27, 39, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-dark2);
    border-radius: var(--r);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
}

.chip-top {
    top: 20px; left: -36px;
    animation: float-chip 3.5s ease-in-out infinite;
}
.chip-bottom {
    bottom: 24px; right: -28px;
    animation: float-chip 3.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

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

.chip-logo {
    width: 38px; height: 38px;
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
}
.chip-emoji {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}
.chip-body { display: flex; flex-direction: column; gap: 2px; }
.chip-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-white);
}
.chip-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================================
   FEATURES — Bento Grid
   ============================================================ */
.features {
    padding: 120px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-dark);
}

.section-intro {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 64px;
}

.eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--at-teal);
    margin-bottom: 14px;
}

.eyebrow-light { color: var(--at-teal); }

.section-intro h2,
.features h2,
.community h2,
.favspots h2,
.sobre h2,
.cta-section h2,
.contato h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.875rem, 3.2vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-intro h2 { color: var(--text-white); }

.section-sub {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.72;
}

/* Bento */
.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

/* Card base */
.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.bento-card:hover {
    border-color: var(--border-dark2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Featured: 7 of 12 cols */
.bento-featured {
    grid-column: span 7;
}

/* Match: 5 of 12 */
.bento-match {
    grid-column: span 5;
}

/* Community: 5 of 12 */
.bento-community {
    grid-column: span 5;
}

/* Dark safety: 7 of 12 */
.bento-dark {
    grid-column: span 7;
    background: linear-gradient(135deg, #0E2235 0%, #0A1D2E 100%);
    border-color: rgba(61,214,200,0.12);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bento-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
    margin-top: 18px;
}

.bento-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Icon */
.bento-icon {
    width: 52px; height: 52px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}
.bento-card:hover .bento-icon { transform: scale(1.06); }
.bento-icon svg { width: 24px; height: 24px; }

.icon-teal  { background: var(--at-teal-dim); color: var(--at-teal); }
.icon-pink  { background: var(--at-pink-dim); color: var(--at-pink); }
.icon-green { background: var(--at-green-dim); color: var(--at-green); }

/* Tags */
.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tag {
    padding: 5px 12px;
    background: rgba(61,214,200,0.08);
    border: 1px solid rgba(61,214,200,0.18);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--at-teal);
}

/* Dark card content */
.bento-emoji { font-size: 2rem; line-height: 1; }

.bento-dark h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}
.bento-dark p { color: var(--text-muted); margin: 0; }

/* ============================================================
   COMMUNITY
   ============================================================ */
.community {
    padding: 120px 0;
    background: var(--bg-white);
}

.community-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.community-text { order: 1; }
.community-text .eyebrow-light { color: var(--at-teal); }

.community-text h2 {
    color: var(--text-dark);
    margin-bottom: 18px;
}

.community-text p {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.78;
    margin-bottom: 32px;
}

.btn-community {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--bg-base);
    color: var(--text-white);
    border-radius: var(--r);
    font-weight: 700;
    font-size: 0.9375rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-community:hover {
    background: #0D1B27;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(7,17,26,0.25);
}
.btn-community svg { width: 18px; height: 18px; }

/* Community types grid */
.community-types { order: 2; }

.types-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dimmer);
    margin-bottom: 16px;
    display: block;
}

.neuro-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.neuro-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1.5px solid;
    transition: transform var(--transition), box-shadow var(--transition);
}
.neuro-pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.n-tdah   { background: rgba(61,214,200,0.08);  color: #1A7A72; border-color: rgba(61,214,200,0.3); }
.n-tea    { background: rgba(255,107,157,0.08); color: #8B1A42; border-color: rgba(255,107,157,0.3); }
.n-dis    { background: rgba(237,137,54,0.08);  color: #7A4010; border-color: rgba(237,137,54,0.3); }
.n-ah     { background: rgba(72,187,120,0.08);  color: #1A6B3C; border-color: rgba(72,187,120,0.3); }
.n-toc    { background: rgba(159,122,234,0.1);  color: #4A2D8C; border-color: rgba(159,122,234,0.3); }
.n-ans    { background: rgba(66,153,225,0.08);  color: #1A4A7A; border-color: rgba(66,153,225,0.3); }
.n-tour   { background: rgba(246,173,85,0.08);  color: #7A4A10; border-color: rgba(246,173,85,0.3); }
.n-sps    { background: rgba(236,201,75,0.08);  color: #7A5A10; border-color: rgba(236,201,75,0.3); }
.n-tda    { background: rgba(61,214,200,0.06);  color: #1A5E60; border-color: rgba(61,214,200,0.2); }

.community-quote-block {
    background: var(--bg-light-2);
    border-left: 3px solid var(--at-teal);
    border-radius: 0 var(--r) var(--r) 0;
    padding: 20px 24px;
}

.cq-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 8px;
}

.cq-author {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1A7A72;
}

/* ============================================================
   ANDROID PHONE MOCKUP
   ============================================================ */
/* Active nav link */
#main-nav a.active { color: var(--text-white); }

.phone-section {
    padding: 100px 0 0;
    background: var(--bg-base);
    border-top: 1px solid var(--border-dark);
    text-align: center;
}

.phone-section .section-intro {
    margin-bottom: 60px;
}

.phone-section .section-intro h2 {
    color: var(--text-white);
}

.phone-showcase {
    display: flex;
    justify-content: center;
    gap: 32px;
    align-items: flex-end;
    padding-bottom: 0;
}

/* Android phone frame */
.android-phone {
    width: 260px;
    background: #1A1A2E;
    border-radius: 40px;
    border: 3px solid #2A2A3E;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06),
        var(--shadow-xl),
        0 0 60px rgba(61,214,200,0.08);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    flex-shrink: 0;
}

.android-phone:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.1),
        0 40px 80px rgba(0,0,0,0.5),
        0 0 80px rgba(61,214,200,0.15);
}

.android-phone.phone-center {
    transform: scale(1.08);
    z-index: 2;
    margin-bottom: 0;
}
.android-phone.phone-center:hover {
    transform: translateY(-12px) scale(1.1);
}

.android-phone.phone-side {
    opacity: 0.75;
    transform: scale(0.92) translateY(24px);
    filter: brightness(0.85);
}
.android-phone.phone-side:hover {
    opacity: 1;
    filter: brightness(1);
    transform: scale(0.95) translateY(10px);
}

/* Phone parts */
.phone-notch {
    width: 100%;
    height: 32px;
    background: #1A1A2E;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    position: relative;
    z-index: 2;
}

.phone-time {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    font-family: 'Inter', sans-serif;
}

.phone-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.phone-icons span {
    display: block;
    height: 9px;
    background: rgba(255,255,255,0.85);
    border-radius: 2px;
}
.phone-icons span:nth-child(1) { width: 3px; }
.phone-icons span:nth-child(2) { width: 4px; }
.phone-icons span:nth-child(3) { width: 5px; }
.phone-icons span:nth-child(4) { width: 9px; border-radius: 2px; }

.phone-camera-bar {
    height: 10px;
    background: #111126;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-camera {
    width: 10px; height: 10px;
    background: #1e1e38;
    border: 1px solid #2a2a4a;
    border-radius: 50%;
}

.phone-screen {
    background: #0D1117;
    min-height: 440px;
    position: relative;
    overflow: hidden;
}

.phone-nav-bar {
    height: 24px;
    background: #1A1A2E;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.phone-nav-bar span {
    display: block;
    border-radius: 4px;
    background: rgba(255,255,255,0.3);
}
.nav-back { width: 20px; height: 3px; transform: skewX(-15deg); }
.nav-home { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.35); }
.nav-recent { width: 14px; height: 11px; border-radius: 3px; }

/* Phone screenshot — real image inside frame */
.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    min-height: 440px;
}

/* ── Screen 1: Feed / Home ── */
.screen-feed .app-header {
    background: linear-gradient(135deg, #0D1B27, #112030);
    padding: 14px 16px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(61,214,200,0.15);
}

.app-header-logo {
    display: flex;
    align-items: center;
    gap: 7px;
}

.app-logo-dot {
    width: 22px; height: 22px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--at-teal), var(--at-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 900;
    color: #07111A;
}

.app-header-logo span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--text-white);
}

.app-header-bell {
    width: 22px; height: 22px;
    background: rgba(61,214,200,0.1);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.feed-item {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.feed-user {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
}

.feed-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #07111A;
    flex-shrink: 0;
}

.av-teal   { background: linear-gradient(135deg, var(--at-teal), var(--at-green)); }
.av-pink   { background: linear-gradient(135deg, var(--at-pink), #FF8EC1); }
.av-purple { background: linear-gradient(135deg, var(--fs-purple), #C4ACFF); }
.av-green  { background: linear-gradient(135deg, var(--at-green), #A8F0B1); }

.feed-user-name {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-white);
}
.feed-user-tag {
    font-size: 0.6rem;
    color: var(--at-teal);
    background: rgba(61,214,200,0.1);
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    margin-top: 1px;
}

.feed-text {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin-bottom: 7px;
}

.feed-reactions {
    display: flex;
    gap: 10px;
}
.feed-reaction {
    font-size: 0.62rem;
    color: var(--text-dimmer);
    display: flex;
    align-items: center;
    gap: 3px;
}
.feed-reaction span { font-size: 0.7rem; }

/* ── Screen 2: Profile ── */
.screen-profile .profile-header-bg {
    height: 80px;
    background: linear-gradient(135deg, #0D2A3F, #0A1E30);
    position: relative;
}

.profile-avatar-wrap {
    position: absolute;
    bottom: -22px;
    left: 16px;
}
.profile-avatar-large {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 3px solid #0D1117;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    color: #07111A;
}

.profile-body {
    padding: 28px 16px 14px;
}

.profile-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-white);
}

.profile-handle {
    font-size: 0.65rem;
    color: var(--text-dimmer);
    margin-bottom: 10px;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
}

.profile-tag {
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.58rem;
    font-weight: 700;
}

.tag-tdah   { background: rgba(61,214,200,0.15); color: var(--at-teal); }
.tag-tea    { background: rgba(255,107,157,0.15); color: var(--at-pink); }
.tag-hiperfoco { background: rgba(107,203,119,0.15); color: var(--at-green); }
.tag-intj   { background: rgba(159,122,234,0.15); color: var(--fs-purple); }

.profile-bio {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.profile-stats-row {
    display: flex;
    gap: 14px;
}
.profile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}
.profile-stat strong {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-white);
}
.profile-stat span {
    font-size: 0.58rem;
    color: var(--text-dimmer);
}

.profile-match-btn {
    margin: 12px 16px;
    width: calc(100% - 32px);
    padding: 9px;
    background: linear-gradient(135deg, var(--at-teal), var(--at-green));
    color: #07111A;
    border: none;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 800;
    text-align: center;
    cursor: default;
}

/* ── Screen 3: Match ── */
.screen-match .match-header {
    padding: 14px 16px 10px;
    text-align: center;
    background: #0D1117;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.match-header-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 2px;
}
.match-header-sub {
    font-size: 0.62rem;
    color: var(--text-dimmer);
}

.match-card-wrap {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.match-card {
    background: #112030;
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.match-card-info { flex: 1; min-width: 0; }
.match-card-name {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 3px;
}
.match-card-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.match-mini-tag {
    font-size: 0.55rem;
    padding: 1px 5px;
    border-radius: 4px;
    font-weight: 600;
}

.match-score {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--at-teal);
    flex-shrink: 0;
}

.match-score small {
    display: block;
    font-size: 0.52rem;
    font-weight: 600;
    color: var(--text-dimmer);
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* ============================================================
   FAVSPOTS
   ============================================================ */
.favspots {
    padding: 120px 0;
    background: linear-gradient(160deg, #150E26 0%, #1C1040 50%, #120E24 100%);
    border-top: 1px solid var(--border-dark);
}

.favspots-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.favspots .eyebrow { color: var(--fs-purple); }

.favspots h2 {
    color: var(--text-white);
    margin-bottom: 18px;
}

/* Product chip */
.product-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 16px;
    background: rgba(159,122,234,0.1);
    border: 1px solid rgba(159,122,234,0.25);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--fs-purple);
    margin-bottom: 24px;
}
.product-chip-icon {
    width: 20px; height: 20px;
    border-radius: 5px;
    object-fit: contain;
}

/* FavSpots text description */
.favspots-text > p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 32px;
}

/* FavSpots list */
.favspots-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.favspots-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.list-icon { font-size: 1.125rem; flex-shrink: 0; }

.favspots-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* FavSpots visual — stacked phones */
.favspots-visual { position: relative; }

.favspots-phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 520px;
}

.favs-phone-back {
    width: 220px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: rotate(-4deg) translateX(20px);
    opacity: 0.75;
    filter: brightness(0.85);
    z-index: 1;
    box-shadow: var(--shadow-xl);
}

.favs-phone-front {
    width: 240px;
    position: relative;
    z-index: 2;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 60px rgba(159,122,234,0.2);
}

.favspots-glow {
    position: absolute;
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(159,122,234,0.35), transparent 70%);
    bottom: -60px; left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    filter: blur(60px);
    z-index: 0;
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre {
    padding: 100px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-dark);
}

.sobre-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.sobre-inner h2 {
    color: var(--text-white);
    margin-bottom: 0;
}

.sobre-content > p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.sobre-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-item {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--r);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color var(--transition), transform var(--transition);
}
.value-item:hover {
    border-color: var(--border-dark2);
    transform: translateY(-3px);
}

.value-icon { font-size: 1.5rem; }
.value-item strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
}
.value-item span {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: 120px 0;
    background: var(--bg-base);
    border-top: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(61,214,200,0.1), transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-logo {
    width: 72px; height: 72px;
    border-radius: 20px;
    margin: 0 auto 28px;
    box-shadow: 0 0 40px rgba(61,214,200,0.2);
}

.cta-section h2 {
    color: var(--text-white);
    margin-bottom: 18px;
}

.cta-section > .cta-inner > p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.72;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato {
    padding: 100px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-dark);
}

.contato-wrap {
    max-width: 680px;
    margin: 0 auto;
}

.contato-header {
    text-align: center;
    margin-bottom: 48px;
}

.contato-header .eyebrow { margin-bottom: 12px; }

.contato-header h2 {
    color: var(--text-white);
    margin-bottom: 10px;
}

.contato-header p {
    font-size: 1.0625rem;
    color: var(--text-muted);
}

/* Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--r-xl);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.form-row .form-group { margin-bottom: 0; }

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-dark);
    border-radius: var(--r-sm);
    padding: 13px 16px;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    transition: border-color var(--transition), background var(--transition);
    resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dimmer); }
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--at-teal);
    background: rgba(61,214,200,0.04);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--at-teal);
    color: #07111A;
    border: none;
    border-radius: var(--r-sm);
    font-size: 0.9375rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    margin-top: 4px;
}
.btn-submit:hover {
    background: #55E8DA;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--at-teal-glow);
}
.btn-submit:disabled {
    opacity: 0.7;
    cursor: default;
    transform: none;
    box-shadow: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #040D13;
    border-top: 1px solid var(--border-dark);
    padding: 56px 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.footer-logo img {
    width: 28px; height: 28px;
    object-fit: contain;
    filter: brightness(1.1);
}
.footer-logo span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-copy {
    font-size: 0.8125rem;
    color: var(--text-dimmer);
    line-height: 1.65;
}

.hero-built-with {
    margin-top: 20px;
    font-size: 0.75rem;
    color: var(--text-dimmer);
    opacity: 0.6;
    letter-spacing: 0.01em;
}

.hero-built-with span {
    color: var(--at-teal);
    font-weight: 600;
    opacity: 1;
}

.footer-links {
    display: flex;
    gap: 56px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--text-dimmer);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--text-white); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
    .bento-featured    { grid-column: span 12; }
    .bento-match       { grid-column: span 6; }
    .bento-community   { grid-column: span 6; }
    .bento-dark        { grid-column: span 12; }

    .phone-showcase    { gap: 16px; }
    .android-phone     { width: 220px; }
    .android-phone.phone-center { transform: scale(1.05); }

    .sobre-inner { grid-template-columns: 1fr; gap: 32px; }
    .sobre-values { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
    }
    .hero-badge { margin: 0 auto 28px; }
    .hero-desc  { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats   { justify-content: center; }
    .hero-visual  { display: none; }
    .reveal-right { opacity: 0; transform: translateY(28px); }
    .reveal-right.revealed { opacity: 1; transform: translateY(0); }

    .community-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .community-text { order: 1; text-align: center; }
    .community-types { order: 2; }
    .btn-community { margin: 0 auto; }
    .neuro-grid { justify-content: center; }

    .favspots-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .favspots-list  { align-items: flex-start; max-width: 360px; margin: 0 auto 36px; }
    .product-chip   { margin: 0 auto 24px; }
    .favspots-actions { justify-content: center; }
    .favspots-phones { min-height: 380px; }
    .favs-phone-back { width: 170px; }
    .favs-phone-front { width: 195px; }

    .footer-inner  { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .footer-logo   { justify-content: center; }
    .footer-links  { justify-content: center; flex-wrap: wrap; gap: 32px; }
    .footer-col    { align-items: center; }

    .phone-showcase .android-phone.phone-side:first-child { display: none; }
    .phone-showcase .android-phone.phone-side:last-child  { display: none; }
    .android-phone.phone-center { transform: scale(1); width: 260px; }
}

@media (max-width: 640px) {
    #main-nav {
        display: none;
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(7,17,26,0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-dark);
        padding: 20px 24px 24px;
        box-shadow: var(--shadow-lg);
    }
    #main-nav.open   { display: block; }
    #main-nav ul     { flex-direction: column; align-items: flex-start; gap: 0; }
    #main-nav ul li a {
        display: block;
        padding: 13px 0;
        font-size: 1rem;
        color: var(--text-white);
        border-bottom: 1px solid var(--border-dark);
        width: 100%;
    }
    #main-nav ul li:last-child a { border-bottom: none; }

    .nav-cta           { display: none; }
    .mobile-menu-btn   { display: flex; }

    .hero              { padding: 108px 0 64px; }
    .hero-actions      { flex-direction: column; align-items: center; }
    .cta-actions       { flex-direction: column; align-items: center; }

    .bento-match, .bento-community { grid-column: span 12; }

    .section-intro h2  { font-size: 1.75rem; }
    .features          { padding: 80px 0; }
    .community, .favspots, .sobre, .cta-section, .contato { padding: 80px 0; }
    .favspots-phones   { display: none; }
    .neuro-pill        { font-size: 0.8125rem; padding: 7px 13px; }

    .contact-form      { padding: 24px 18px; }
    .form-row          { grid-template-columns: 1fr; }

    .sobre-values      { grid-template-columns: 1fr; }

    .phone-section     { padding: 60px 0 0; }
}
