/* ═══════════════════════════════════════════════════════════
   JESSICA MACHARETE — Marketing & Social Media
   Design: Luxury Editorial — Cream & Hot Pink
═══════════════════════════════════════════════════════════ */

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

:root {
  --pink: #E91E8C;
  --pink-light: #F472B6;
  --pink-pale: #FCE4F3;
  --cream: #FAF6F1;
  --cream-dark: #F0E8DE;
  --dark: #1A0E12;
  --dark2: #2D1A22;
  --gray: #6B5060;
  --gray-light: #C4AEBB;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', serif;
  --font-script: 'Dancing Script', cursive;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(233,30,140,0.12);
  --shadow-lg: 0 16px 64px rgba(233,30,140,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

/* ─── NAV ───────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: all .3s ease;
}
.nav.scrolled {
  background: rgba(250,246,241,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(233,30,140,0.08);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700; color: var(--dark);
}
.nav-logo span { color: var(--pink); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--gray); transition: color .2s; }
.nav-links a:hover { color: var(--pink); }
.nav-btn {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 8px 20px; border-radius: 50px;
  font-weight: 600 !important;
  transition: all .2s !important;
}
.nav-btn:hover { background: var(--dark) !important; transform: translateY(-1px); box-shadow: var(--shadow); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 80px;
  max-width: 1200px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.35; animation: float 8s ease-in-out infinite;
}
.blob1 { width: 500px; height: 500px; background: var(--pink-light); top: -100px; right: -100px; animation-delay: 0s; }
.blob2 { width: 350px; height: 350px; background: #F9A8D4; bottom: 0; left: -80px; animation-delay: -3s; }
.blob3 { width: 200px; height: 200px; background: var(--pink); top: 50%; left: 30%; animation-delay: -5s; opacity: .2; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(233,30,140,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233,30,140,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-content { flex: 1; max-width: 580px; z-index: 1; }
.hero-tag {
  display: inline-block;
  background: var(--pink-pale); color: var(--pink);
  padding: 6px 18px; border-radius: 50px;
  font-size: .82rem; font-weight: 600; letter-spacing: .05em;
  margin-bottom: 24px;
  animation: fadeUp .8s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--dark); margin-bottom: 24px;
  animation: fadeUp .8s .1s ease both;
}
.hero-title em { color: var(--pink); font-style: italic; }
.hero-sub {
  font-size: 1.1rem; color: var(--gray); line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeUp .8s .2s ease both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px;
  animation: fadeUp .8s .3s ease both;
}
.btn-primary {
  background: var(--pink); color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  transition: all .25s; display: inline-block;
  box-shadow: 0 4px 20px rgba(233,30,140,0.35);
}
.btn-primary:hover { background: var(--dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  color: var(--dark); padding: 14px 28px;
  font-weight: 600; font-size: 1rem;
  border: 2px solid var(--cream-dark); border-radius: 50px;
  transition: all .25s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); }
.hero-stats {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  animation: fadeUp .8s .4s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-n { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--pink); line-height: 1; }
.stat-l { font-size: .78rem; color: var(--gray); margin-top: 2px; }
.stat-div { width: 1px; height: 40px; background: var(--cream-dark); }
.hero-visual {
  flex: 0 0 400px; position: relative; height: 400px;
  animation: fadeUp .8s .2s ease both;
}
.hero-circle {
  width: 280px; height: 280px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-pale), var(--cream-dark));
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  display: flex; align-items: center; justify-content: center;
  border: 3px solid rgba(233,30,140,.15);
  box-shadow: var(--shadow-lg);
  z-index: 0;
}
.hero-circle-inner {
  width: 200px; height: 200px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #C2185B);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.hero-initial {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 700; color: white; letter-spacing: .1em;
}
.hero-card {
  position: absolute; background: white;
  border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  font-size: .85rem; font-weight: 500;
  animation: floatCard 4s ease-in-out infinite;
  z-index: 2;
}
.hero-card strong { display: block; color: var(--pink); font-size: 1rem; }
.hc-icon { font-size: 1.5rem; }
.hc1 { top: 20px; left: 10px; animation-delay: 0s; }
.hc2 { top: 20px; right: 0; animation-delay: -1.5s; }
.hc3 { bottom: 40px; right: 20px; animation-delay: -3s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ─── SECTION COMMON ────────────────────────────────────── */
.section-tag {
  display: inline-block;
  color: var(--pink); font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15; color: var(--dark);
}
.section-title em { color: var(--pink); font-style: italic; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header.light .section-tag { color: rgba(255,255,255,.7); }
.section-title.white { color: white; }

/* ─── SOBRE ─────────────────────────────────────────────── */
.sobre { padding: 100px 0; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sobre-img-wrap { position: relative; height: 480px; }
.sobre-img-bg {
  position: absolute; inset: 20px 0 0 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--pink-pale), var(--cream-dark));
}
.sobre-img-box {
  position: absolute; inset: 0 20px 20px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: transparent;
}
.sobre-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sobre-initials {
  display: none;
}
.sobre-badge {
  display: none;
}
.sobre-pill {
  position: absolute; background: white;
  padding: 8px 18px; border-radius: 50px;
  font-size: .82rem; font-weight: 600; color: var(--pink);
  box-shadow: var(--shadow);
}
.pill1 { bottom: 60px; left: -20px; }
.pill2 { top: 60px; right: -10px; }
.sobre-text p { color: var(--gray); margin-bottom: 16px; }
.sobre-text .section-tag, .sobre-text .section-title { margin-bottom: 16px; }
.sobre-text .section-title { margin-bottom: 24px; }
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.skill-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 500; }
.skill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }

/* ─── SERVIÇOS ──────────────────────────────────────────── */
.servicos { padding: 100px 0; background: var(--cream-dark); }
.servicos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.servico-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  position: relative; transition: all .3s;
  border: 2px solid transparent;
}
.servico-card:hover {
  border-color: var(--pink); transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.servico-card.featured {
  background: linear-gradient(135deg, var(--pink), #C2185B);
  color: white;
}
.servico-card.featured h3, .servico-card.featured p { color: white; }
.sv-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--dark); color: white;
  padding: 4px 14px; border-radius: 50px; font-size: .75rem; font-weight: 700;
}
.sv-icon { font-size: 2.5rem; margin-bottom: 16px; }
.servico-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 10px; color: var(--dark); }
.servico-card p { font-size: .9rem; color: var(--gray); line-height: 1.6; }

/* ─── CASES ─────────────────────────────────────────────── */
.cases { padding: 100px 0; background: var(--dark2); }
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.case-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 36px;
  transition: all .3s;
}
.case-card:hover { background: rgba(255,255,255,.08); border-color: rgba(233,30,140,.5); transform: translateY(-4px); }
.case-year { color: var(--pink); font-size: .8rem; font-weight: 700; letter-spacing: .1em; margin-bottom: 16px; }
.case-logo-text { font-family: var(--font-display); font-size: 1.6rem; color: white; font-weight: 700; }
.case-sub { color: var(--gray-light); font-size: .85rem; margin-bottom: 24px; }
.case-metrics { display: flex; gap: 32px; margin-bottom: 24px; }
.cm { display: flex; flex-direction: column; }
.cm-n { font-family: var(--font-display); font-size: 2.2rem; color: var(--pink); font-weight: 700; line-height: 1; }
.cm-l { font-size: .78rem; color: var(--gray-light); margin-top: 2px; }
.case-desc { color: var(--gray-light); font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.case-tag { display: inline-block; background: rgba(233,30,140,.2); color: var(--pink-light); padding: 4px 14px; border-radius: 50px; font-size: .78rem; font-weight: 600; }
.partners { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.partner {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  padding: 10px 24px; border-radius: 50px; font-size: .88rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,.1);
}

/* ─── PLANOS ─────────────────────────────────────────────── */
.planos { padding: 100px 0; }
.planos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plano-card {
  background: white; border-radius: var(--radius-lg); padding: 36px;
  border: 2px solid var(--cream-dark); position: relative; transition: all .3s;
}
.plano-card:hover { border-color: var(--pink-light); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plano-card.destaque {
  border-color: var(--pink); transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.plano-card.destaque:hover { transform: scale(1.03) translateY(-4px); }
.plano-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: white;
  padding: 5px 20px; border-radius: 50px; font-size: .78rem; font-weight: 700;
  white-space: nowrap;
}
.plano-nome { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.plano-nome span { color: var(--pink); }
.plano-desc { color: var(--gray); font-size: .88rem; line-height: 1.5; margin-bottom: 20px; }
.plano-price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 28px; }
.plano-price-sub { font-size: 1.1rem; color: var(--gray); font-weight: 400; }
.plano-price-sub em { font-size: .9rem; font-style: normal; }
.plano-items { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.plano-items li { font-size: .9rem; color: var(--gray); padding-left: 4px; }
.plano-items li::first-letter { color: var(--pink); font-weight: 700; }
.btn-plano {
  width: 100%; padding: 14px; border-radius: 50px;
  background: var(--pink); color: white;
  border: none; cursor: pointer; font-weight: 600; font-size: 1rem;
  transition: all .25s; font-family: var(--font-body);
}
.btn-plano:hover { background: var(--dark); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ─── CONTATO ────────────────────────────────────────────── */
.contato { padding: 100px 0; background: var(--cream-dark); }
.contato-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contato-links { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contato-link {
  display: flex; align-items: center; gap: 16px;
  background: white; padding: 16px 20px; border-radius: var(--radius);
  transition: all .2s; border: 2px solid transparent;
}
.contato-link:hover { border-color: var(--pink); transform: translateX(4px); }
.cl-icon { display: flex; align-items: center; justify-content: center; min-width: 24px; min-height: 24px; }
.cl-icon img { width: 24px; height: 24px; object-fit: contain; }
.cl-icon + div strong { font-size: .95rem; }
.cl-icon + div small { color: var(--gray); font-size: .8rem; }
.contato-form-wrap { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 2px solid var(--cream-dark);
  border-radius: 10px; font-family: var(--font-body); font-size: .95rem;
  color: var(--dark); background: var(--cream);
  transition: border-color .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--pink); background: white; }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; padding: 15px; background: var(--pink); color: white;
  border: none; border-radius: 50px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all .25s; font-family: var(--font-body);
  box-shadow: 0 4px 20px rgba(233,30,140,.3);
}
.btn-submit:hover { background: var(--dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.form-success { color: #059669; font-size: .9rem; margin-top: 12px; display: none; }
.form-error { color: #DC2626; font-size: .9rem; margin-top: 8px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--dark); padding: 48px 0 24px; color: rgba(255,255,255,.6); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; color: white; font-weight: 700; }
.footer-logo span { color: var(--pink); }
.footer-text { font-size: .9rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--pink); }
.footer-copy { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; font-size: .8rem; text-align: center; }

/* ─── MODAL ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(26,14,18,.7);
  z-index: 200; display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white; border-radius: var(--radius-lg); padding: 40px;
  max-width: 480px; width: 100%; position: relative;
  animation: modalIn .3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--cream-dark); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.modal-close:hover { background: var(--pink); color: white; }
.modal h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 8px; }
.modal h3 span { color: var(--pink); }
.modal p { color: var(--gray); margin-bottom: 24px; font-size: .9rem; }

/* ─── AUTH PAGE ──────────────────────────────────────────── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 24px; position: relative; overflow: hidden;
}
.auth-bg { position: fixed; inset: 0; z-index: -1; }
.auth-card {
  background: white; border-radius: var(--radius-lg); padding: 48px;
  max-width: 440px; width: 100%; box-shadow: var(--shadow-lg);
  position: relative; z-index: 1;
}
.auth-back { color: var(--gray); font-size: .85rem; display: inline-block; margin-bottom: 24px; transition: color .2s; }
.auth-back:hover { color: var(--pink); }
.auth-logo { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 6px; }
.auth-logo span { color: var(--pink); }
.auth-sub { color: var(--gray); font-size: .9rem; margin-bottom: 32px; }
.auth-form { display: flex; flex-direction: column; }
.auth-footer { margin-top: 24px; font-size: .85rem; color: var(--gray); text-align: center; }
.auth-footer a { color: var(--pink); font-weight: 600; }
.alert { padding: 10px 16px; border-radius: 8px; font-size: .88rem; margin-bottom: 16px; }
.alert-error { background: #FEE2E2; color: #DC2626; }
.alert-success { background: #D1FAE5; color: #059669; }

/* ─── DASHBOARD ──────────────────────────────────────────── */
.dash-layout { display: flex; min-height: 100vh; }
.sidebar {
  width: 240px; background: var(--dark); flex-shrink: 0;
  display: flex; flex-direction: column; padding: 32px 0;
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 50;
}
.sidebar-logo {
  padding: 0 24px 32px; font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700; color: white;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sidebar-logo span { color: var(--pink); }
.sidebar-nav { flex: 1; padding: 24px 12px; display: flex; flex-direction: column; gap: 4px; }
.sn-link {
  display: block; padding: 12px 16px; border-radius: 10px;
  color: rgba(255,255,255,.6); font-size: .9rem; font-weight: 500;
  transition: all .2s; cursor: pointer;
}
.sn-link:hover, .sn-link.active { background: rgba(233,30,140,.15); color: white; }
.sidebar-footer { padding: 24px; border-top: 1px solid rgba(255,255,255,.08); }
.sf-user { color: rgba(255,255,255,.7); font-size: .85rem; margin-bottom: 8px; }
.sf-logout { color: var(--pink-light); font-size: .85rem; transition: color .2s; }
.sf-logout:hover { color: white; }
.dash-main { margin-left: 240px; flex: 1; padding: 32px; background: var(--cream); min-height: 100vh; }
.dash-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.dash-title { font-family: var(--font-display); font-size: 1.8rem; color: var(--dark); }
.btn-ghost-sm { color: var(--gray); border: 1.5px solid var(--cream-dark); padding: 8px 18px; border-radius: 50px; font-size: .85rem; transition: all .2s; }
.btn-ghost-sm:hover { border-color: var(--pink); color: var(--pink); }
.dash-card { background: white; border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.dc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.dc-header h2 { font-family: var(--font-display); font-size: 1.2rem; color: var(--dark); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.upload-form { display: flex; flex-direction: column; gap: 0; }
.upload-progress { margin-top: 12px; }
.progress-bar { background: var(--cream-dark); border-radius: 50px; height: 8px; overflow: hidden; margin-bottom: 6px; }
.progress-fill { height: 100%; background: var(--pink); border-radius: 50px; transition: width .3s; width: 0; }
.files-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 16px; }
.file-item {
  background: var(--cream); border-radius: var(--radius); padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  border: 2px solid transparent; transition: all .2s;
}
.file-item:hover { border-color: var(--pink-light); }
.fi-thumb {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.fi-photo { background: #FCE4F3; }
.fi-video { background: #E3F2FD; }
.fi-material { background: #F3E5F5; }
.fi-name { font-size: .88rem; font-weight: 600; color: var(--dark); }
.fi-meta { font-size: .78rem; color: var(--gray); text-transform: capitalize; }
.fi-owner { font-size: .78rem; color: var(--gray); }
.fi-desc { font-size: .78rem; color: var(--gray); font-style: italic; }
.fi-actions { display: flex; gap: 8px; }
.fi-btn {
  padding: 6px 14px; border-radius: 8px; font-size: .82rem; font-weight: 600;
  background: var(--pink); color: white; border: none; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; transition: all .2s;
}
.fi-btn:hover { background: var(--dark); }
.fi-del { background: #FEE2E2; color: #DC2626; }
.fi-del:hover { background: #DC2626; color: white; }
.fi-download { background: var(--pink); color: white; }
.fi-download:hover { background: var(--dark); }
.empty-state { text-align: center; color: var(--gray); padding: 40px 20px; font-size: .9rem; }
.search-input {
  padding: 8px 16px; border: 2px solid var(--cream-dark);
  border-radius: 50px; font-size: .85rem; outline: none;
  transition: border-color .2s;
}
.search-input:focus { border-color: var(--pink); }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { text-align: left; font-size: .78rem; font-weight: 700; color: var(--gray); padding: 10px 12px; border-bottom: 2px solid var(--cream-dark); letter-spacing: .05em; text-transform: uppercase; }
.data-table td { padding: 12px; border-bottom: 1px solid var(--cream-dark); font-size: .88rem; color: var(--dark); }
.data-table tr:last-child td { border-bottom: none; }
.badge { padding: 3px 12px; border-radius: 50px; font-size: .75rem; font-weight: 700; }
.badge-admin { background: var(--pink-pale); color: var(--pink); }
.badge-client { background: #E3F2FD; color: #1565C0; }
.btn-sm { padding: 5px 14px; border-radius: 6px; font-size: .8rem; font-weight: 600; background: var(--cream-dark); color: var(--dark); border: none; cursor: pointer; transition: all .2s; }
.btn-sm:hover { background: var(--pink); color: white; }
.btn-secondary {
  background: #f5f0ea;
  border: 1px solid #d8c8c0;
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s ease;
}
.btn-secondary:hover {
  background: #e8ddd4;
}
.filter-tabs { display: flex; gap: 8px; }
.ft-btn { padding: 6px 16px; border-radius: 50px; border: 2px solid var(--cream-dark); background: none; font-size: .82rem; font-weight: 600; color: var(--gray); cursor: pointer; transition: all .2s; }
.ft-btn.active, .ft-btn:hover { background: var(--pink); color: white; border-color: var(--pink); }

/* ─── FLASH ──────────────────────────────────────────────── */
.flash-messages { position: fixed; top: 80px; right: 20px; z-index: 300; display: flex; flex-direction: column; gap: 8px; }
.flash { padding: 12px 24px; border-radius: 10px; font-size: .9rem; font-weight: 500; box-shadow: var(--shadow); animation: fadeUp .3s ease; }
.flash-error { background: #FEE2E2; color: #DC2626; }
.flash-success { background: #D1FAE5; color: #059669; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s ease both; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .planos-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plano-card.destaque { transform: none; }
  .plano-card.destaque:hover { transform: translateY(-4px); }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 24px; gap: 20px;
    box-shadow: var(--shadow-lg); border-top: 2px solid var(--cream-dark);
  }
  .hamburger { display: flex; }
  .hero { flex-direction: column; padding-top: 100px; }
  .hero-visual { display: none; }
  .sobre-grid, .contato-grid, .cases-grid { grid-template-columns: 1fr; }
  .servicos-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }

  /* Dashboard mobile adjustments */
  .dash-layout { flex-direction: column; }
  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
    padding: 16px 16px 8px;
    bottom: auto;
    top: auto;
    left: auto;
  }
  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 0 0;
  }
  .sn-link {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
    padding: 10px 12px;
  }
  .sidebar-footer {
    padding: 16px 0 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .dash-main {
    margin-left: 0;
    padding: 20px 16px 32px;
  }
  .dash-topbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .dc-header {
    flex-direction: column;
    align-items: stretch;
  }
  .dc-header h2 {
    margin-bottom: 12px;
  }
  .files-grid {
    grid-template-columns: 1fr;
  }
  .schedule-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .form-select, .form-input {
    width: 100%;
  }
  .tab-content { padding-top: 0; }
}

}

@media (max-width: 600px) {
  .sidebar { position: static; width: 100%; flex-direction: row; min-height: auto; padding: 0; }
  .sidebar-nav { flex-direction: row; padding: 8px; }
  .dash-main { margin-left: 0; }
  .sobre-img-wrap { height: 300px; }
}

/* ─── SCHEDULE STYLES ───────────────────────────────────── */
.schedule-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}

.schedule-calendar {
  margin-top: 20px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.calendar-day-name {
  text-align: center;
  font-weight: 600;
  color: var(--gray);
  padding: 8px;
  font-size: 14px;
}

.calendar-day {
  aspect-ratio: 1;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 8px;
  background: var(--white);
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 80px;
}

.calendar-day:hover {
  background: var(--pink-pale);
  border-color: var(--pink-light);
}

.calendar-day.today {
  background: var(--pink-pale);
  border-color: var(--pink);
}

.calendar-day.other-month {
  background: var(--cream-dark);
  color: var(--gray);
}

.calendar-day-number {
  font-weight: 600;
  margin-bottom: 4px;
}

.schedule-item {
  background: var(--pink);
  color: var(--dark2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-item.planned { background: var(--cream-dark); }
.schedule-item.in_progress { background: var(--pink-light); }
.schedule-item.published { background: #10B981; }

.schedule-item.post::before { content: "📝 "; }
.schedule-item.reel::before { content: "🎬 "; }
.schedule-item.story::before { content: "📱 "; }
.schedule-item.ad::before { content: "📢 "; }

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--cream-dark);
}

.modal-header h3 {
  margin: 0;
  font-family: var(--font-display);
}

.modal-close {
  font-size: 28px;
  cursor: pointer;
  color: var(--gray);
  line-height: 1;
}

.modal-close:hover {
  color: var(--dark);
}

.schedule-form {
  padding: 24px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

/* Status badge */
.status-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-planned {
  background: var(--cream-dark);
  color: var(--dark2);
}

.status-in_progress {
  background: var(--pink-light);
  color: var(--dark2);
}

.status-published {
  background: #10B981;
  color: var(--dark2);
}

/* Form enhancements */
.form-select, .form-input {
  padding: 8px 12px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
}

.form-select:focus, .form-input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 2px rgba(233,30,140,0.1);
}
