@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700;800&family=Bebas+Neue&display=swap');

/* Ocultar barra de rolagem */
::-webkit-scrollbar {
    display: none;
}
* {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

:root {
    --accent:     #FFE600;
    --accent-dim: rgba(255,230,0,0.1);
    --text:       #FFFFFF;
    --text-muted: #888888;
    --border:     rgba(255,255,255,0.08);
    --font-body:  'Space Grotesk', sans-serif;
    --font-title: 'Bebas Neue', sans-serif;
}

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

body {
    background-color: #050505;
    background-image: url('../img/fundo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text);
    font-family: var(--font-body);
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.68);
    pointer-events: none;
    z-index: 0;
}

/* ── Header ── */
.top-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(env(safe-area-inset-top, 16px) + 12px) 20px 12px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.back-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border);
    display: flex; justify-content: center; align-items: center;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.back-btn:hover { background: var(--accent); color: #000; border-color: var(--accent); }

.header-logo {
    height: 42px; width: auto; object-fit: contain;
}

/* ── Container ── */
.container {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto;
    padding: 36px 20px 80px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ── Page Title ── */
.page-title {
    animation: fadeDown 0.7s ease both;
}

.page-title h1 {
    font-family: var(--font-title);
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: 2px;
    color: #fff;
}

.page-title h1 span { color: var(--accent); }

.page-subtitle {
    margin-top: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ── Contact List ── */
.contact-list {
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    animation: fadeUp 0.7s ease 0.1s both;
}

/* ── Contact Card ── */
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    text-decoration: none;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
    position: relative;
}

.contact-card:last-child { border-bottom: none; }

.contact-card:hover {
    background: rgba(255,255,255,0.04);
}

.contact-card::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.contact-card:hover::after { width: 100%; }

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.15);
}

.contact-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-text strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
}

.contact-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.contact-arrow {
    font-size: 1.2rem;
    color: #25D366;
    opacity: 0.7;
    transition: all 0.25s ease;
}

.contact-card:hover .contact-arrow {
    opacity: 1;
    transform: scale(1.15);
}

/* ── Info Box ── */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(255,230,0,0.05);
    border: 1px solid rgba(255,230,0,0.15);
    border-radius: 14px;
    animation: fadeUp 0.7s ease 0.2s both;
}

.info-box i {
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.info-box strong { color: #fff; }

/* ── Footer ── */
.footer { text-align: center; }

.footer-link {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link strong { color: #fff; }
.footer-link:hover { color: var(--accent); }

/* ── Animations ── */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 400px) {
    .page-title h1 { font-size: 2.2rem; }
    .container { padding: 28px 16px 60px; }
}