:root {
  --azul: #0c4da2;
  --amarelo: #f7c600;
  --branco: #ffffff;
  --cinza: #0b1121;
  --texto: #edf2ff;
  --texto-claro: #aab8ff;
  --fundo: #050714;
  --bordas: rgba(255,255,255,0.1);
  --neon: rgba(247,198,0,0.95);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--texto);
  background: var(--fundo);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3,6,18,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.brand {
  color: #f7c600;
  font-size: 1.4rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 1.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 700;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--neon);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  background: linear-gradient(135deg, rgba(2,6,20,0.95), rgba(14,17,48,0.98)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  color: var(--branco);
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 100px 20px 40px;
  position: relative;
  overflow: hidden;
}

.atendimento-hero {
  background: linear-gradient(135deg, rgba(2,6,20,0.98), rgba(12,22,68,0.96)), url('https://images.unsplash.com/photo-1527261834078-9e6f6d9a1a8a?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(247,198,0,0.2), transparent 22%),
    radial-gradient(circle at bottom right, rgba(87,31,255,0.16), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100% 24px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(247,198,0,0.12), transparent 18%), radial-gradient(circle at 80% 80%, rgba(87,31,255,0.12), transparent 12%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  z-index: 1;
}

.hero-copy {
  max-width: 640px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(247,198,0,0.95);
  color: #10233d;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.14em;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(3.4rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 620px;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  text-decoration: none;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 26px 60px rgba(247,198,0,0.18);
}

.btn-primary {
  background: linear-gradient(135deg, #f7c600, #ffdc45);
  color: #101827;
  border-color: rgba(255,230,100,0.35);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #ffdb47, #ffe870);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border-color: rgba(255,255,255,0.28);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.34);
}

.hero-note {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  max-width: 620px;
  margin-top: 18px;
  line-height: 1.7;
}

.ticket-section {
  padding: 60px 0 40px;
  background: radial-gradient(circle at top left, rgba(247,198,0,0.12), transparent 20%), rgba(5,7,20,0.96);
}

.ticket-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.ticket-panel {
  display: grid;
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(11,18,40,0.95);
  border: 1px solid rgba(247,198,0,0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.ticket-summary {
  display: grid;
  gap: 18px;
}

.ticket-summary h3 {
  margin: 0;
  color: #ffffff;
}

.ticket-summary p {
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}

.ticket-benefits {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ticket-benefits li {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}

.ticket-benefits strong {
  display: block;
  color: #f7c600;
  margin-bottom: 6px;
}

.ticket-benefits span {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.ticket-note {
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.03);
}

.ticket-form {
  display: grid;
  gap: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 30px;
}

.ticket-form h3 {
  margin-top: 0;
  color: #f7c600;
}

.ticket-form button {
  width: fit-content;
  padding: 16px 30px;
  border-radius: 999px;
  border: none;
}

@media (max-width: 980px) {
  .ticket-grid {
    grid-template-columns: 1fr;
  }
}

.text-link {
  color: var(--amarelo);
  text-decoration: underline;
  font-weight: 700;
}

.text-link:hover {
  color: #ffe868;
}

.support {
  background: rgba(255,255,255,0.03);
}

.support .cards article {
  min-height: 220px;
}

.footer-note {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.hero-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: 12px;
}

.hero-tags span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-card {
  border-radius: 28px;
  padding: 28px;
  background: rgba(1,7,20,0.6);
  border: 1px solid rgba(247,198,0,0.22);
  box-shadow: 0 0 45px rgba(247,198,0,0.22);
  backdrop-filter: blur(12px);
}

.atendimento-hero .hero-card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(247,198,0,0.25);
}

.atendimento-hero .hero-card h2 {
  color: #f7c600;
}

.neon-card {
  border: 1px solid rgba(247,198,0,0.45);
  box-shadow: 0 0 35px rgba(247,198,0,0.18);
}

.glow-card {
  background: rgba(255,255,255,0.1);
}

.hero-card h2 {
  margin: 0 0 12px;
  font-size: 2.1rem;
}

.hero-card p {
  margin: 0;
  color: rgba(255,255,255,0.88);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-header span {
  color: #f7c600;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2.2rem, 2.6vw, 2.8rem);
  color: #ffffff;
}

.about,
.contact,
.atendimento {
  background: radial-gradient(circle at top, rgba(12,77,162,0.16), transparent 35%), rgba(7,13,33,0.95);
}

.ticket-section {
  padding: 60px 0 40px;
  background: rgba(5,7,20,0.98);
}

.ticket-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.ticket-form {
  display: grid;
  gap: 18px;
  background: rgba(8,12,30,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 28px;
}

.ticket-form h3 {
  margin-top: 0;
  color: #ffffff;
}

.ticket-list {
  background: rgba(8,12,30,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 28px;
}

.ticket-list h3 {
  margin-top: 0;
  color: #ffffff;
}

.ticket-list p {
  color: rgba(255,255,255,0.82);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.cards article,
.contact-card,
.ticket-form,
.ticket-list {
  background: rgba(8,12,30,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.cards article::before,
.contact-card::before,
.ticket-form::before,
.ticket-list::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(247,198,0,0.15), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.cards article:hover::before,
.contact-card:hover::before,
.ticket-form:hover::before,
.ticket-list:hover::before {
  opacity: 1;
}

.cards article h3,
.contact-card h3 {
  margin-top: 0;
  color: #ffffff;
}

.cards article p,
.contact-card p,
.contact-copy p {
  color: var(--texto-claro);
  line-height: 1.8;
}

.team {
  padding: 80px 0;
  background: radial-gradient(circle at top, rgba(12,77,162,0.14), transparent 30%), rgba(7,13,33,0.94);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.team-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(8,12,30,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
}

.team-card h3 {
  margin: 0 0 6px;
  color: #ffffff;
}

.team-card p {
  margin: 0;
  color: var(--texto-claro);
}

.contact {
  padding-top: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 24px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-list div {
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-list strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
}

.contact-stats {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-stats div,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: rgba(255,255,255,0.05);
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-stats strong,
.stat-card span {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #f7c600;
}

.stat-card p {
  margin: 0;
  color: var(--texto-claro);
}

.ticket-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.field-row {
  display: grid;
  gap: 10px;
}

.field-row label {
  font-weight: 700;
  color: #ffffff;
}

.field-row input,
.field-row textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 1rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
  background: rgba(255,255,255,0.05);
  color: #ffffff;
}

.field-row input:focus,
.field-row textarea:focus {
  outline: none;
  border-color: #f7c600;
  transform: translateY(-1px);
}

.form-message {
  margin-top: 8px;
  font-weight: 700;
}

.ticket-list {
  margin-top: 36px;
}

.ticket-list h3 {
  margin-top: 0;
  color: #ffffff;
}

.ticket-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.ticket-item:last-child {
  border-bottom: none;
}

.ticket-item-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.ticket-item strong {
  font-size: 1.05rem;
  color: #ffffff;
}

.ticket-item span {
  display: inline-block;
  margin-right: 12px;
  font-size: 0.95rem;
  color: var(--texto-claro);
}

.ticket-item .status {
  font-weight: 700;
  color: #f7c600;
}

.footer {
  background: #050714;
  color: #ffffff;
  padding: 28px 0;
}

.footer-note {
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.footer-link {
  color: #f7c600;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .hero-tags {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero {
    min-height: auto;
    padding: 60px 16px 40px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-tags {
    grid-template-columns: repeat(2, minmax(85px, 1fr));
  }
}

.admin-panel {
  padding: 80px 0 60px;
  background: radial-gradient(circle at top left, rgba(247,198,0,0.12), transparent 30%), rgba(5,7,20,0.98);
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  margin-top: 32px;
}

.admin-card {
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(247,198,0,0.12);
  background: rgba(5,7,20,0.85);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.admin-card h3 {
  margin-top: 0;
  color: #f7c600;
}

.admin-card p,
.admin-card li,
.admin-card strong {
  color: rgba(255,255,255,0.88);
}

.admin-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.admin-card li {
  margin-bottom: 12px;
}

.admin-login input {
  width: 100%;
  border: 1px solid #cdd7e6;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 1rem;
  margin-bottom: 16px;
}

.admin-login button {
  width: 100%;
}

.admin-dashboard {
  margin-top: 40px;
  border: 1px solid rgba(247,198,0,0.12);
  border-radius: 28px;
  padding: 28px;
  background: rgba(4,9,22,0.95);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.admin-dashboard.hidden {
  display: none;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.dashboard-header h3,
.dashboard-header p {
  color: #ffffff;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.admin-stat-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.admin-stat-card span {
  display: block;
  font-size: 2rem;
  color: #f7c600;
  margin-bottom: 10px;
}

.admin-stat-card p {
  margin: 0;
  color: rgba(255,255,255,0.82);
}

.admin-actions {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 20px;
  margin-bottom: 24px;
  align-items: end;
}

.admin-bulk-actions {
  margin-bottom: 24px;
}

.bulk-controls {
  display: grid;
  grid-template-columns: 130px 1.2fr 120px 120px;
  gap: 14px;
  align-items: end;
}

.bulk-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}

.bulk-checkbox input {
  width: 18px;
  height: 18px;
}

.admin-search,
.admin-filter,
.admin-sort {
  display: grid;
  gap: 10px;
}

.admin-search label,
.admin-filter label,
.admin-sort label {
  color: rgba(255,255,255,0.82);
}

.admin-search input,
.admin-filter select,
.admin-sort select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  color: #ffffff;
}

.admin-search input::placeholder {
  color: rgba(255,255,255,0.5);
}

.admin-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.tab {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.tab.active {
  background: rgba(247,198,0,0.15);
  color: #f7c600;
  border-color: rgba(247,198,0,0.45);
}

.tab-panel {
  display: block;
}

.tab-panel.hidden {
  display: none;
}


.tickets-table {
  display: grid;
  gap: 18px;
}

.ticket-row {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(8,12,30,0.96);
}

.ticket-row strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
}

.ticket-row span {
  color: rgba(255,255,255,0.76);
}

.ticket-actions {
  display: grid;
  gap: 10px;
}

.ticket-actions label {
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.ticket-actions select {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 1rem;
  width: 100%;
  background: rgba(255,255,255,0.05);
  color: #ffffff;
}

.footer {
  background: #050714;
  color: #ffffff;
  padding: 28px 0;
}

.footer-note {
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.footer-link {
  color: #f7c600;
  text-decoration: none;
}

.admin-panel {
  padding: 90px 0 60px;
  background: linear-gradient(135deg, rgba(2,6,20,0.98), rgba(7,12,28,0.98));
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  margin-top: 32px;
}

.admin-card {
  border-radius: 28px;
  padding: 32px;
  background: rgba(8,12,30,0.94);
  border: 1px solid rgba(247,198,0,0.16);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.admin-card h3 {
  margin-top: 0;
  color: #f7c600;
}

.admin-card p,
.admin-card li,
.admin-card strong,
.admin-card ul {
  color: rgba(255,255,255,0.88);
}

.admin-login input,
.admin-search input,
.admin-filter select,
.admin-login select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 1rem;
  background: rgba(255,255,255,0.05);
  color: #ffffff;
}

.admin-login input:focus,
.admin-search input:focus,
.admin-filter select:focus,
.admin-login select:focus {
  outline: none;
  border-color: #f7c600;
}

..admin-login button,
#logoutButton {
  width: auto;
  padding: 14px 24px;
}

.admin-login button.btn-secondary {
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  border-color: rgba(255,255,255,0.22);
}

.admin-login button.btn-secondary:hover,
.admin-login button.btn-secondary:focus {
  background: rgba(255,255,255,0.24);
}

#logoutButton.btn-primary {
  background: linear-gradient(135deg, #f7c600, #ffdc45);
  color: #101827;
  border-color: rgba(255,230,100,0.35);
}

#logoutButton.btn-primary:hover,
#logoutButton.btn-primary:focus {
  background: linear-gradient(135deg, #ffdb47, #ffe870);
}

.admin-dashboard {
  margin-top: 40px;
  border: 1px solid rgba(247,198,0,0.14);
  border-radius: 32px;
  padding: 32px;
  background: rgba(4,9,22,0.96);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.dashboard-header h3,
.dashboard-header p {
  color: #ffffff;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.admin-stat-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.admin-stat-card span {
  display: block;
  font-size: 2rem;
  color: #f7c600;
  margin-bottom: 12px;
}

.admin-stat-card p {
  margin: 0;
  color: rgba(255,255,255,0.82);
}

.admin-actions {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 20px;
  margin-bottom: 28px;
  align-items: end;
}

.admin-search,
.admin-filter,
.admin-sort {
  display: grid;
  gap: 10px;
}

.admin-search label,
.admin-filter label {
  color: rgba(255,255,255,0.82);
}

.admin-search input,
.admin-filter select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  color: #ffffff;
}

.admin-search input::placeholder {
  color: rgba(255,255,255,0.5);
}

.admin-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.tab {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.tab.active {
  background: linear-gradient(135deg, rgba(247,198,0,0.18), rgba(255,255,255,0.08));
  color: #f7c600;
  border-color: rgba(247,198,0,0.35);
}

.report-grid {
  display: grid;
  gap: 18px;
}

.report-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.report-card h4 {
  margin: 0 0 10px;
  color: #ffffff;
}

.report-card p {
  margin: 0;
  color: rgba(255,255,255,0.85);
}

.tickets-table {
  display: grid;
  gap: 18px;
}

.ticket-row {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(12,17,34,0.95);
}

.ticket-row strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
}

.ticket-row span {
  color: rgba(255,255,255,0.75);
}

.ticket-actions {
  display: grid;
  gap: 10px;
}

.ticket-actions label {
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.ticket-actions select {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 1rem;
  width: 100%;
  background: rgba(255,255,255,0.05);
  color: #ffffff;
}

.ticket-meta {
  display: grid;
  gap: 10px;
}

.ticket-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.ticket-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ticket-badge-aberto {
  background: rgba(247, 198, 0, 0.16);
  color: #fff3b0;
}

.ticket-badge-em-progresso {
  background: rgba(69, 154, 255, 0.16);
  color: #dcecff;
}

.ticket-badge-concluído {
  background: rgba(22, 235, 148, 0.16);
  color: #d6ffe6;
}

.ticket-date {
  color: rgba(255,255,255,0.65);
}

.ticket-select-container {
  display: flex;
  align-items: flex-start;
}

.ticket-select-label {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ticket-select-label input {
  width: 18px;
  height: 18px;
}

.delete-ticket-btn {
  width: 100%;
}

.admin-feedback {
  margin: 0 0 18px;
  font-size: 0.96rem;
  min-height: 20px;
  opacity: 0.95;
}

.admin-refresh {
  justify-self: end;
  align-self: stretch;
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .admin-grid,
  .ticket-grid,
  .team-grid,
  .admin-actions {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-card img {
    margin: 0 auto;
  }

  .hero-tags {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero {
    min-height: auto;
    padding: 60px 16px 40px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-tags {
    grid-template-columns: repeat(2, minmax(85px, 1fr));
  }

  .admin-actions,
  .admin-stats,
  .report-grid {
    grid-template-columns: 1fr;
  }
}
