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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  -webkit-font-smoothing: antialiased;
}

.cor{color: #03a6ff;}
.verde{color: #009440;}
.red{color: #f25268;}
.cinza{color:#888888;}

a.linkcor {color: #03a6ff; transition: color 0.2s ease; text-decoration: none;}

a.linkcor:hover{
  text-decoration: underline;
}

a.linkpreto {color: #000000; transition: color 0.2s ease; text-decoration: none;}

a.linkpreto:hover{
  color: #03a6ff;
  text-decoration: underline;
}

a.linkred {color: #f25268; transition: color 0.2s ease; text-decoration: none;}

a.linkred:hover{
  text-decoration: underline;
}

h1{font-weight: 700; margin: 10px 0; font-size: clamp(1.5rem, 1.3rem + 0.5vw, 2rem);}
h2{font-weight: 700; margin: 10px 0;}
h3{font-weight: 700; margin: 10px 0;}
p{margin: 10px 0; line-height: 26px; margin: 10px 0;}

/* ==========================================================================
   2. HEADER & NAVEGAÇÃO
   ========================================================================== */
.main-header {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 4vw;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Header: Lado Esquerdo */
.header-left {
  display: flex;
  align-items: center;
}

.btn-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #000000;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 16px;
}

.nav-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #000;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #03a6ff;
}

.active {color: #03a6ff;}

.nav-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-icon {
  display: block;
}

/* Header: Centro */
.header-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: #000;
}

/* Header: Lado Direito */
.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.btn-search {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #222222;
  transition: color 0.2s ease;
}

.btn-search:hover,
.btn-search.active {
  color: #03a6ff;
}

.search-icon {
  display: block;
}

.btn-login {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #222222;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-login:hover {
  color: #03a6ff;
}

.btn-user {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #222222;
  text-decoration: none;
  padding: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
  margin-left: -5px;
}

.btn-user:hover {
  color: #03a6ff;
}

.btn-user .user-icon {
  display: block;
}

/* ==========================================================================
   2.B MENU MOBILE
   ========================================================================== */
/* Drawer Mobile */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  box-shadow: 2px 0 10px rgba(0,0,0,0.15);
  transition: left 0.3s ease;
  padding: 30px 20px;
  box-sizing: border-box;
}

.mobile-menu-drawer.ativo {
  left: 0;
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-links li {
  margin-bottom: 18px;
}

.mobile-menu-links a {
  text-decoration: none;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  display: block;
}

.mobile-menu-links .mobile-menu-destaque {
  color: #03a6ff;
  border-top: 1px solid #eee;
  padding-top: 16px;
  margin-top: 10px;
}

/* Fundo escurecido ao abrir */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
}

.mobile-menu-overlay.ativo {
  display: block;
}

/* ==========================================================================
   3. BARRA DE BUSCA EXPANSÍVEL (100%)
   ========================================================================== */
.search-bar-wrapper {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
}

.search-bar-wrapper.open {
  max-height: 90px;
  opacity: 1;
  padding: 16px 0;
}

.search-bar-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 4vw;
}

.search-form {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
}

.search-input {
  width: 100%;
  height: 46px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #000000;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input:focus {
  border-color: #03a6ff;
  box-shadow: 0 0 0 3px rgba(3, 166, 255, 0.12);
}

.search-input::placeholder {
  color: #888888;
}

.btn-search-submit {
  height: 46px;
  padding: 0 24px;
  background-color: #03a6ff;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn-search-submit:hover {
  opacity: 0.9;
}

/* ==========================================================================
   4. GALERIA & CARDS
   ========================================================================== */
.gallery-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 48px 4vw;
}

.gallery-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 48px;
}

.card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.card-thumb-link {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background-color: #d9d9d9;
}

.card-thumb-link::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 42px;
  height: 42px;
  background: url('img/more.png') no-repeat center / contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.card-img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.card-thumb-link:hover .card-img {
  filter: brightness(0.30);
}

.card-thumb-link:hover::after {
  opacity: 1;
}

/* Badge / Selo de Destaque */
.card-tag {
  position: absolute;
  top: 0;
  right: 24px;
  width: auto;
  max-width: 32px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}

.card-tag-award {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: auto;
  max-width: 74px;
  height: auto;
  z-index: 4;
  pointer-events: none;
}

.card-content {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
}

.card-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #03a6ff;
  text-decoration: none;
}

.card-title {
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-title a:hover {
  color: #03a6ff;
}

.card-agano {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  border: #03a6ff solid 1px;
  padding: 22px;
  margin-bottom: -18px;
}

/* Card Filter Trabalhos / Agências */
.card-filter {
  border: 1px solid #e5e5e5;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.card-filter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.filter-field {
  width: 100%;
  position: relative;
}

.filter-select {
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  padding: 0 32px 0 12px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333333;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.filter-select:focus {
  border-color: #03a6ff;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.agency {
  font-size: 0.75rem;
  color: #888888;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

a.linkag {
  color: #888888;
  text-decoration: none;
}

a.linkag:hover {
  color: #888888;
  text-decoration: none;
}

.card-likes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #03a6ff;
  user-select: none;
}

.heart-icon {
  display: block;
  flex-shrink: 0;
}

.likes-count {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

.btnver {width:100%; text-align: center; margin:30px 0 40px 0;}

/* ==========================================================================
   5. MARQUEE / TEXTO PASSANDO 100%
   ========================================================================== */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 18px 0;
  margin-top: 40px;
  user-select: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 180s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  white-space: nowrap;
}

.marquee-content span {
  font-size: 20rem;
  font-weight: 700;
  color: #000000;
}

.marquee-content .dot {
  color: #03a6ff;
  font-size: 20rem;
}

@keyframes scrollMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-logo-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 18px 0;
  margin: 60px 0;
  user-select: none;
}

.marquee-logo-content {
  display: flex;
  align-items: center;
  gap: 54px;
  padding-right: 54px;
  white-space: nowrap;
}

.marquee-logo-content span {
  font-size: 4rem;
  font-weight: 700;
  color: #000000;
}

.marquee-logo-content .dot {
  color: #03a6ff;
  font-size: 4rem;
}

.marquee-logo-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 80s linear infinite;
}

/* ==========================================================================
   6. PÁGINAS INTERNAS, ESTRUTURAS & RANKINGS
   ========================================================================== */
.page-container {
  width: 100%;
  margin: 0 auto;
  padding: 56px 4vw;
  min-height: calc(100vh - 64px - 300px);
  display: flex;
  justify-content: center;
}

.content-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Colunas e Layouts */
.two-columns-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 120px;
  width: 100%;
  align-items: start;
}

.col-left,
.col-right {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.two-columns-60-40 {
  grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
  gap: 120px;
}

.aviso-mobile{display:none;}
.no-mobile{position: relative;}

/* Badges / Rankings Tags */
.ranking-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.agencia-badge {
  display: inline-flex;
  align-items: center;
  padding: 16px 24px;
  background-color: #f7f7f7;
  color: #000000;
  text-decoration: none;
  border-radius: 40px;
  user-select: none;
}

.agencia-badge:hover {
  background-color: #03a6ff;
  color: #ffffff;
}

/* Tabela de Ranking */
.ranking-table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 18px;
  border: 1px solid #e5e5e5;
  background-color: #ffffff;
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: inherit;
  font-size: 0.88rem;
  min-width: 680px;
}

.ranking-table thead {
  background-color: #f7f7f7;
  border-bottom: 1px solid #e5e5e5;
}

.ranking-table th {
  padding: 14px 16px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #666666;
}

.ranking-table tbody tr {
  border-bottom: 1px solid #eeeeee;
  transition: background-color 0.15s ease;
}

.ranking-table tbody tr:last-child {
  border-bottom: none;
}

.ranking-table tbody tr:hover {
  background-color: #f7f7f7;
}

.ranking-table td {
  padding: 14px 16px;
  color: #333333;
  vertical-align: middle;
}

.col-pos {
  width: 50px;
  text-align: center;
}

.col-main {
  font-weight: 700;
}

.col-votes {
  text-align: right;
  padding-right: 24px;
}

.table-link {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.table-link:hover {
  color: #03a6ff;
}

.badge-pos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  background-color: #f7f7f7;
  color: #555555;
}

.badge-pos.gold {
  background-color: #fef3c7;
  color: #b45309;
}

.badge-pos.silver {
  background-color: #f1f5f9;
  color: #475569;
}

.badge-pos.bronze {
  background-color: #ffedd5;
  color: #9a3412;
}

.tag-pill {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background-color: #f7f7f7;
  color: #444444;
  border-radius: 40px;
}

.votes-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-weight: 700;
  color: #f25268;
}

.votes-wrapper .heart-icon {
  color: #f25268;
  flex-shrink: 0;
}

/* Header de Detalhes da Campanha */
.campaign-meta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-bottom: 24px;
}

.campaign-meta-info {
  margin: 0;
  font-size: 0.9rem;
}

.selocat {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  background-color: #f7f7f7;
  color: #000;
  font-size: 0.54rem;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==========================================================================
   7. FORMULÁRIOS & BOTÕES GERAIS
   ========================================================================= */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group-cad {
  display: flex;
  flex-direction: column;
  margin-bottom: 4px;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 6px;
  margin-top: 12px;
}

.form-input {
  width: 100%;
  height: 46px;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #000000;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  border-color: #03a6ff;
  box-shadow: 0 0 0 3px rgba(3, 166, 255, 0.12);
}

.form-input::placeholder {
  color: #aaaaaa;
}

.form-textarea {
  width: 100%;
  min-height: 220px;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #000000;
  outline: none;
  resize: vertical; /* Permite redimensionar apenas na vertical */
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-textarea:focus {
  border-color: #03a6ff;
  box-shadow: 0 0 0 3px rgba(3, 166, 255, 0.12);
}

.form-textarea::placeholder {
  color: #aaaaaa;
}

.link-forgot {
  font-size: 0.82rem;
  font-weight: 500;
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-top: 12px;
}

.link-forgot:hover {
  color: #03a6ff;
  text-decoration: underline;
}

/* Radio & Checkbox */
.radio-group-inline {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 4px;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 6px;
}

.radio-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 6px;
}

.radio-label,
.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  cursor: pointer;
  user-select: none;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
  accent-color: #03a6ff;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.space-radio {padding: 2px 0;}

.input-captcha {
  max-width: 170px;
}

.form-input-date {
  cursor: pointer;
}

/* Customiza o ícone de calendário no Chrome/Edge/Safari */
.form-input-date::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.form-input-date::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Botões */
.btn-submit {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  background-color: #03a6ff;
  border: 1px solid #03a6ff;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  background-color: #03a6ff;
  border: 1px solid #03a6ff;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  align-self: flex-start;
}

.btn-form {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  background-color: #03a6ff;
  border: 1px solid #03a6ff;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  margin-top: 16px;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  background-color: #f25268;
  border: 1px solid #f25268;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  margin-top: 16px;
}

.alert-box {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}
.alert-error {
  background-color: #fde8e8;
  color: #9b1c1c;
  border: 1px solid #f8b4b4;
}
.alert-success {
  background-color: #def7ec;
  color: #03543f;
  border: 1px solid #bcf0da;
}

.btnfotoag {color: #fff; font-weight:600; font-size:18px; background-color:#03a6ff; padding: 8px 12px; border:none; border-radius: 50px;}

/* ==========================================================================
   7B. FORM MEU PERFIL
   ========================================================================== */
.perfil-topo-info {
      margin-bottom: 25px;
      padding-bottom: 35px;
      border-bottom: 1px solid #eee;
    }
    .perfil-foto-box {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 24px;
      padding: 16px;
      background: #fafafa;
      border: 1px solid #eaeaea;
      border-radius: 8px;
    }
    .perfil-foto-img {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #ddd;
      background: #fff;
    }
    .perfil-publico-aviso {
      background: #f0f7ff;
      border: 1px solid #cce5ff;
      color: #004085;
      padding: 12px 16px;
      border-radius: 6px;
      margin-bottom: 20px;
      font-size: 14px;
    }
    .table-meus-trabalhos {
      width: 100%;
      border-collapse: collapse;
      margin-top: 15px;
    }
    .table-meus-trabalhos th, .table-meus-trabalhos td {
      padding: 10px 12px;
      text-align: left;
      border-bottom: 1px solid #eee;
      vertical-align: middle;
      font-size: 14px;
    }
    .table-meus-trabalhos th {
      background: #fdfdfd;
      font-weight: 600;
      color: #555;
    }
    .table-thumb-mini {
      width: 48px;
      height: 48px;
      object-fit: cover;
      border-radius: 4px;
      border: 1px solid #ddd;
      display: block;
    }
    .btn-remover-mini {
      background: #fff;
      border: 1px solid #e74c3c;
      color: #e74c3c;
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 600;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .btn-remover-mini:hover {
      background: #e74c3c;
      color: #fff;
    }
    .form-inline-trabalho {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }
    .form-inline-trabalho input {
      flex: 1;
    }
    .btndados {font-size:12px; border:1px solid #ccc; padding:4px 8px; text-decoration:none; border-radius:20px; color:#888;}
    .btnlogout {font-size:12px; border:1px solid #f25268; padding:4px 8px; text-decoration:none; border-radius:20px; color:#f25268;}

/* ==========================================================================
   8. PAGINAÇÃO
   ========================================================================== */
.pagination-nav {
  display: flex;
  justify-content: center;
  margin: 120px 0 20px 0;
  width: 100%;
}

.pagination {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
  align-items: center;
}

.pagination .page-item {
  display: inline-block;
}

.pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  background-color: #f2f2f2;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
  user-select: none;
}

.pagination a.page-link:hover {
  background-color: #03a6ff;
  color: #ffffff;
}

.pagination .page-item.active .page-link {
  background-color: #03a6ff;
  color: #ffffff;
  font-weight: 700;
  cursor: default;
}

.pagination .page-item.disabled .page-link {
  color: #aaaaaa;
  background-color: #fafafa;
  cursor: not-allowed;
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */
.main-footer {
  width: 100%;
  margin-top: 80px;
}

.footer-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 4vw 36px 4vw;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-socials a {
  color: #222222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  color: #03a6ff;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  padding: 48px 0;
}

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

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 16px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list a {
  font-size: 0.88rem;
  color: #222222;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: #03a6ff;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #eeeeee;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #888888;
}

/* ==========================================================================
   10. UTILITÁRIOS & BOTÃO VOLTAR AO TOPO
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 4vw;
  width: 44px;
  height: 44px;
  background-color: #03a6ff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#color-cycle {
  transition: color 1s ease;
  color: #000000; 
}

/* ==========================================================================
   11. BREAKPOINTS RESPONSIVOS (@MEDIA)
   ========================================================================== */

/* Monitores Grandes / Ultrawide */
@media (min-width: 1600px) {
  .header-container {
    padding: 0 5vw;
    height: 70px;
  }

  .logo {
    font-size: 1.55rem;
  }

  .search-bar-container {
    padding: 0 5vw;
  }

  .gallery-wrapper {
    padding: 56px 5vw;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 36px;
    row-gap: 56px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-category {
    font-size: 0.75rem;
  }

  .agency {
    font-size: 0.8rem;
  }

  .page-container {
    padding: 72px 5vw;
  }

  .content-box {
    max-width: 1200px;
  }

  .footer-container {
    padding: 0 5vw 40px 5vw;
  }

  .back-to-top {
    right: 5vw;
    bottom: 40px;
    width: 48px;
    height: 48px;
  }
}

/* Notebooks / Telas Médias (3 Colunas) */
@media (max-width: 1600px) {
  .card-tag {
    max-width: 28px;
  }

  .card-tag-award {
    max-width: 58px;
  }
}

/* Notebooks / Telas Médias (3 Colunas) */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 40px;
  }

  .card-tag {
    max-width: 26px;
  }

  .card-tag-award {
    max-width: 58px;
  }

  .marquee-content span {
    font-size: 15rem;
    font-weight: 700;
    color: #000000;
  }

  .marquee-content .dot {
    color: #03a6ff;
    font-size: 15rem;
  }
}

/* Tablets (2 Colunas + Menu Mobile) */
@media (max-width: 860px) {
  .header-container {
    padding: 0 4vw;
    height: 58px;
  }

  .btn-menu-toggle {
    display: inline-flex;
    margin-right: 14px;
  }

  .nav-item-desktop {
    display: none !important;
  }

  .nav-home-link {
    display: none !important;
  }

  .btn-submit {
    display: none !important;
  }

  .gallery-wrapper {
    padding: 32px 4vw;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 36px;
  }

  .two-columns-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .two-columns-70-30 {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .col-right {
    border-top: 1px solid #eeeeee d;
    padding-top: 30px;
  }

  .aviso-mobile{width:100%; display: inline-block; margin: 100px 0 40px 0; text-align: center;}
  .no-mobile{display: none;}

  .page-container {
    padding: 40px 4vw;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .marquee-content span {
    font-size: 12rem;
    font-weight: 700;
    color: #000000;
  }

  .marquee-content .dot {
    color: #03a6ff;
    font-size: 12rem;
  }
}

/* Mobile (1 Coluna 100%) */
@media (max-width: 600px) {
  .header-container {
    padding: 0 20px;
  }

  .header-right {
    gap: 16px;
  }

  .search-bar-container {
    padding: 0 20px;
  }

  .search-input,
  .btn-search-submit {
    height: 42px;
  }

  .btn-login {
    font-size: 0.78rem;
  }

  .gallery-wrapper {
    padding: 24px 20px;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 32px;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-tag {
    max-width: 32px;
  }

  .card-tag-award {
    max-width: 74px;
  }

  .page-container {
    padding: 32px 20px;
  }

  .campaign-meta-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-container {
    padding: 0 20px 24px 20px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 0;
  }

  .footer-links-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 36px 0;
  }

  .back-to-top {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }

  .marquee-content span {
    font-size: 10rem;
    font-weight: 700;
    color: #000000;
  }

  .marquee-content .dot {
    color: #03a6ff;
    font-size: 10rem;
  }

  .perfil-topo-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .form-inline-trabalho {
    flex-direction: column;
  }
}

/* =========================================
   FORMULÁRIO DE ENVIO DE TRABALHOS
   ========================================= */

.form-envio {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fs_divider {
  border-bottom: #eeeeee 1px solid;
  margin-bottom: 20px;
  padding-bottom: 60px;
}

.form-section-title {
  margin: 6px 0 4px 0; /* Espaço extra antes de cada novo bloco */
}

.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-select {
  width: 100%;
  height: 46px;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  padding: 0 36px 0 14px;
  font-family: inherit;
  font-size: 0.92rem;
  color: #000000;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 0.2s ease;
}

.form-select:focus {
  border-color: #03a6ff;
}

.form-help-text {
  font-size: 0.78rem;
  color: #777777;
  margin: -2px 0 8px 0;
  line-height: 1.4;
}

.media-card-highlight {
  background-color: #f7faff;
  border: 1px dashed #03a6ff;
  border-radius: 6px;
  padding: 16px 16px 26px 16px;
}

.form-input-file {
  font-size: 0.88rem;
  color: #444444;
  cursor: pointer;
}

/* =========================================
   BLOCO DE PEÇAS DINÂMICAS
   ========================================= */

.pecas-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.peca-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 12px 16px;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.peca-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #03a6ff;
  color: #ffffff;
  white-space: nowrap;
}

.peca-inputs {
  flex: 1;
  display: flex;
  gap: 10px;
}

.peca-inputs .form-input {
  height: 40px;
  font-size: 0.88rem;
}

.btn-remove-peca {
  background: none;
  border: none;
  color: #f25268;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: opacity 0.2s ease;
}

.btn-remove-peca:hover {
  opacity: 0.7;
}

.add-peca-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.btn-add-peca {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background-color: #ffffff;
  color: #03a6ff;
  border: 1px solid #03a6ff;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-add-peca:hover {
  background-color: #03a6ff;
  color: #ffffff;
}

@media (max-width: 860px) {
  .form-row-2 {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  
  .peca-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .peca-inputs {
    flex-direction: column;
    width: 100%;
  }

  .btn-remove-peca {
    align-self: flex-end;
  }
}

#aviso-direitos {background-color: #03a6ff; padding: 10px 26px; color: #fff; line-height: 22px;}
#regulamento {padding: 0 0 0 20px; border-left: #03a6ff 5px solid;}