/* ============================================
   ESCOGESTIO — Folha de Estilos Principal
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500&display=swap');

:root {
    --teal:       #4A9E9B;
    --teal-dark:  #2E7A77;
    --teal-xdark: #1A4E4C;
    --teal-light: #7BBFBC;
    --teal-bg:    #E8F4F3;
    --teal-bg2:   #D0ECEA;
    --gold:       #C9A84C;
    --gold-light: #E2C97A;
    --gold-dark:  #A07A2A;
    --white:      #FAFAF8;
    --text-dark:  #1A2E2D;
    --text-mid:   #3D5957;
    --text-muted: #7A9896;
    --border:     rgba(74,158,155,0.18);
    --border-md:  rgba(74,158,155,0.3);
    --shadow-sm:  0 2px 12px rgba(46,122,119,0.08);
    --shadow-md:  0 8px 28px rgba(46,122,119,0.12);
    --radius-sm:  8px;
    --radius-md:  12px;
    --radius-lg:  18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

/* ---- UTILITÁRIOS ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 5rem 2rem; }
.section-sm { padding: 3rem 2rem; }

.section-label {
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.6rem;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.18;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.78;
    font-weight: 300;
    max-width: 580px;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---- BADGES ---- */
.badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.22rem 0.7rem;
    border-radius: 5px;
}
.badge-disponivel  { background: #d1fae5; color: #065f46; }
.badge-dev         { background: #fef3c7; color: #92400e; }
.badge-breve       { background: var(--teal-bg); color: var(--teal-dark); }

/* ---- BOTÕES ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.72rem 1.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-primary  { background: var(--teal); color: #fff; }
.btn-primary:hover  { background: var(--teal-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-outline  { background: transparent; color: var(--teal-dark); border: 1.5px solid var(--teal-light); }
.btn-outline:hover  { background: var(--teal-bg); }
.btn-gold     { background: var(--gold); color: var(--text-dark); }
.btn-gold:hover     { background: var(--gold-light); }
.btn-danger   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.btn-danger:hover   { background: #fca5a5; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.82rem; }

/* ---- NAVBAR ---- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250,250,248,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--teal-dark);
    letter-spacing: 0.04em;
}
.logo-text em { color: var(--gold); font-style: normal; }
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.25rem;
}
.nav-links a {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    letter-spacing: 0.02em;
    transition: all 0.18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-bg); }
.nav-links .nav-cta {
    background: var(--teal);
    color: #fff !important;
    padding: 0.45rem 1.1rem;
    margin-left: 0.5rem;
}
.nav-links .nav-cta:hover { background: var(--teal-dark); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--teal); cursor: pointer; }

/* ---- HERO ---- */
.hero {
    min-height: calc(100vh - 78px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 4rem 2rem;
    max-width: 1140px;
    margin: 0 auto;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    padding: 0.32rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 1.4rem;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.14;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub {
    font-size: 1.04rem;
    color: var(--text-mid);
    line-height: 1.78;
    font-weight: 300;
    margin-bottom: 2.2rem;
    max-width: 460px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}
.stat-label {
    font-size: 0.74rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-emblem {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, var(--teal-bg) 0%, rgba(74,158,155,0.06) 100%);
    border: 2px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-emblem::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 1px dashed rgba(74,158,155,0.22);
    pointer-events: none;
}
.emblem-inner { text-align: center; }
.emblem-icon {
    width: 76px;
    height: 76px;
    background: var(--teal);
    border-radius: 50%;
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.emblem-icon svg { width: 36px; height: 36px; }
.emblem-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--teal-dark);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.emblem-inner p {
    font-size: 0.75rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    margin-top: 3px;
}

/* ---- PLATAFORMAS GRID ---- */
.platforms-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--teal-bg) 15%, var(--teal-bg) 85%, var(--white) 100%);
    padding: 5rem 2rem;
}
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    max-width: 1140px;
    margin: 3rem auto 0;
}
.platform-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.22s, box-shadow 0.22s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.platform-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    opacity: 0;
    transition: opacity 0.22s;
}
.platform-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.platform-card:hover::before { opacity: 1; }
.platform-card.destaque {
    border-color: rgba(74,158,155,0.38);
    background: linear-gradient(145deg, var(--white), var(--teal-bg));
}
.platform-card.destaque::before { opacity: 1; }
.card-badge-wrap {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
}
.platform-icon-wrap {
    width: 50px;
    height: 50px;
    background: var(--teal-bg);
    border: 1.5px solid rgba(74,158,155,0.22);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--teal-dark);
    margin-bottom: 1.1rem;
}
.platform-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.45rem;
}
.platform-card p {
    font-size: 0.86rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
    flex: 1;
    margin-bottom: 1.4rem;
}
.card-features {
    list-style: none;
    margin-bottom: 1.5rem;
}
.card-features li {
    font-size: 0.82rem;
    color: var(--text-mid);
    padding: 0.28rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal-light);
    flex-shrink: 0;
}
.card-link {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    transition: gap 0.18s;
}
.card-link:hover { gap: 9px; }

/* ---- SECÇÃO PORQUÊ ---- */
.why-section { padding: 5rem 2rem; }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}
.why-list { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2.5rem; }
.why-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--teal-bg);
    border: 1px solid rgba(74,158,155,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--teal-dark);
}
.why-text h4 { font-weight: 500; font-size: 0.98rem; color: var(--text-dark); margin-bottom: 0.3rem; }
.why-text p  { font-size: 0.86rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }
.why-visual {
    background: var(--teal-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.dash-label { font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.dash-row {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.75rem;
}
.dash-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.dash-dot.gold { background: var(--gold); }
.dash-dot.light { background: var(--teal-light); }
.dash-row-label { font-size: 0.82rem; color: var(--text-mid); flex: 1; }
.progress-wrap { flex: 1; height: 4px; background: rgba(74,158,155,0.12); border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--teal); border-radius: 2px; }
.dash-val { font-size: 0.83rem; font-weight: 500; color: var(--teal-dark); }
.dash-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.75rem;
}
.dash-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 1rem;
    text-align: center;
}
.dash-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}
.dash-card-num.gold { color: var(--gold-dark); }
.dash-card-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

/* ---- CONTACTO (CTA) ---- */
.cta-section {
    background: var(--teal-dark);
    padding: 5rem 2rem;
}
.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}
.cta-section .section-label { color: var(--gold-light); }
.cta-section .section-title { color: #fff; }
.cta-section .section-sub { color: rgba(255,255,255,0.68); }
.cta-info { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.75rem; }
.cta-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
}
.cta-info-row i { color: var(--teal-light); font-size: 18px; }
.cta-form { display: flex; flex-direction: column; gap: 0.9rem; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.7); }
.form-input, .form-select, .form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-sm);
    padding: 0.72rem 1rem;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.38); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold-light); }
.form-select option { background: var(--teal-dark); color: #fff; }
.form-textarea { resize: vertical; min-height: 90px; }
.form-message { padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 0.88rem; margin-bottom: 0.5rem; }
.form-message.success { background: rgba(16,185,129,0.15); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.3); }
.form-message.error   { background: rgba(239,68,68,0.12); color: #fca5a5; border: 1px solid rgba(239,68,68,0.25); }

/* ---- PÁGINA INTERNA ---- */
.page-hero {
    background: linear-gradient(135deg, var(--teal-bg) 0%, rgba(74,158,155,0.04) 100%);
    border-bottom: 1px solid var(--border);
    padding: 3.5rem 2rem;
    text-align: center;
}
.page-hero .section-title { font-size: 2.6rem; margin-bottom: 0.8rem; }

/* ---- PLATAFORMA DETAIL ---- */
.plat-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.plat-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}
.plat-detail-icon {
    width: 64px;
    height: 64px;
    background: var(--teal-bg);
    border: 2px solid rgba(74,158,155,0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--teal-dark);
    flex-shrink: 0;
}
.plat-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}
.feat-item {
    background: var(--teal-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-mid);
}
.feat-item::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
}

/* ---- SOBRE ---- */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1140px;
    margin: 3rem auto 0;
}
.valor-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    text-align: center;
}
.valor-icon {
    width: 52px;
    height: 52px;
    background: var(--teal-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 22px;
    color: var(--teal-dark);
}
.valor-card h3 { font-size: 1rem; font-weight: 500; margin-bottom: 0.5rem; }
.valor-card p  { font-size: 0.84rem; color: var(--text-mid); font-weight: 300; line-height: 1.7; }

/* ---- FOOTER ---- */
.footer {
    background: var(--text-dark);
    padding: 4rem 2rem 0;
}
.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--teal-light);
    text-decoration: none;
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 0.75rem;
}
.footer-logo em { color: var(--gold-light); font-style: normal; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; font-weight: 300; }
.footer-contact { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1rem; }
.footer-contact span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}
.footer-contact i { color: var(--teal-light); font-size: 16px; }
.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.1rem;
}
.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.18s;
}
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
    max-width: 1140px;
    margin: 0 auto;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}

/* ---- ADMIN ---- */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 240px;
    background: var(--text-dark);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 200;
}
.sidebar-logo {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sidebar-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal-light);
    text-decoration: none;
}
.sidebar-logo a em { color: var(--gold-light); font-style: normal; }
.sidebar-logo p { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 2px; }
.sidebar-nav { flex: 1; padding: 1rem 0; }
.sidebar-group { margin-bottom: 0.5rem; }
.sidebar-group-label {
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.28);
    padding: 0.6rem 1.5rem 0.3rem;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 1.5rem;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: all 0.18s;
    border-left: 3px solid transparent;
}
.sidebar-link i { font-size: 17px; flex-shrink: 0; }
.sidebar-link:hover { color: rgba(255,255,255,0.88); background: rgba(255,255,255,0.05); }
.sidebar-link.active { color: var(--teal-light); background: rgba(74,158,155,0.1); border-left-color: var(--teal); }
.admin-main {
    margin-left: 240px;
    flex: 1;
    background: #f4f6f5;
    min-height: 100vh;
}
.admin-topbar {
    background: #fff;
    border-bottom: 1px solid #e5e9e8;
    padding: 0 2rem;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.admin-topbar h1 { font-size: 1.05rem; font-weight: 500; color: var(--text-dark); }
.admin-content { padding: 2rem; }
.admin-card {
    background: #fff;
    border: 1px solid #e5e9e8;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.admin-card h2 { font-size: 1rem; font-weight: 500; margin-bottom: 1.25rem; color: var(--text-dark); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.stat-card {
    background: #fff;
    border: 1px solid #e5e9e8;
    border-radius: var(--radius-sm);
    padding: 1.25rem;
}
.stat-card .label { font-size: 0.76rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.stat-card .value { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--teal); }

/* Tabela admin */
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th {
    text-align: left;
    font-size: 0.74rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    padding: 0.6rem 1rem;
    border-bottom: 2px solid #e5e9e8;
}
.admin-table td { padding: 0.75rem 1rem; border-bottom: 1px solid #f0f3f2; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #f8faf9; }

/* Formulário admin */
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.admin-form-group { display: flex; flex-direction: column; gap: 5px; }
.admin-form-group.full { grid-column: 1 / -1; }
.admin-label { font-size: 0.82rem; font-weight: 500; color: var(--text-mid); }
.admin-input, .admin-select, .admin-textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid #d4dbd9;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: #fff;
    outline: none;
    transition: border-color 0.18s;
}
.admin-input:focus, .admin-select:focus, .admin-textarea:focus { border-color: var(--teal); }
.admin-textarea { resize: vertical; min-height: 110px; }
.admin-form-actions { display: flex; gap: 0.75rem; margin-top: 1rem; align-items: center; }

/* Login */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-bg);
    padding: 2rem;
}
.login-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-md);
}
.login-box h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    text-align: center;
    color: var(--teal-dark);
    margin-bottom: 0.4rem;
}
.login-box .sub { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-bottom: 2rem; }
.login-group { margin-bottom: 1rem; }
.login-label { font-size: 0.82rem; font-weight: 500; color: var(--text-mid); display: block; margin-bottom: 5px; }
.login-input {
    width: 100%;
    padding: 0.72rem 1rem;
    border: 1px solid #d4dbd9;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.18s;
}
.login-input:focus { border-color: var(--teal); }
.login-error { background: #fee2e2; color: #991b1b; font-size: 0.84rem; padding: 0.65rem 0.9rem; border-radius: 6px; margin-bottom: 1rem; }

/* ---- RESPONSIVO ---- */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .hero-sub { max-width: 100%; margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .platforms-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .sobre-grid { grid-template-columns: 1fr; }
    .valores-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .admin-form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem; gap: 0.2rem; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .platforms-grid { grid-template-columns: 1fr; }
    .valores-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .plat-features-grid { grid-template-columns: 1fr; }
    .admin-sidebar { width: 200px; }
    .admin-main { margin-left: 200px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}
