/* ================================================================
   FENETEC PARÁ 2026 — style.css
   Paleta oficial: Dark Green #01260A · Pigment Green #1CA64C
                   Gamboge #F29F05 · Seasalt #F9F9F9
   Tipografia: Century Gothic Paneuropean
================================================================ */

/* Century Gothic via Google Fonts (Nunito como substituto web-safe + system fallback) */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* PALETA OFICIAL */
  --verde-dark:    #01260A;
  --verde-mid:     #012e0c;
  --verde-main:    #1CA64C;
  --verde-bright:  #22c058;
  --verde-light:   #3dd96f;
  --verde-pale:    #e6f9ee;
  --verde-subtle:  #f2fdf5;
  --gamboge:       #F29F05;
  --gamboge-light: #fbb830;
  --gamboge-pale:  #fff8e1;
  --seasalt:       #F9F9F9;
  --branco:        #ffffff;
  --cinza-100:     #f4f4f4;
  --cinza-200:     #e8e8e8;
  --cinza-300:     #d0d0d0;
  --cinza-500:     #8a8a8a;
  --cinza-700:     #555555;
  --texto:         #1a1a1a;
  --texto-soft:    #444444;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --shadow-xl:  0 32px 80px rgba(0,0,0,.22);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

/* TIPOGRAFIA — Paneuropean primeiro, fallback correto */
--font-body: "CenturyGothicPaneuropean", "Century Gothic", sans-serif;
--font-display: "CenturyGothicPaneuropean", "Century Gothic", sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--branco);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ================================================================
   NAV
================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0 clamp(16px, 5vw, 80px);
}
.nav.scrolled {
  background: rgba(1,38,10,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: right;
  height: 76px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  height: 52px;
    width: 100%!important;
  object-fit: contain;
  /* logo tem fundo transparente/preto — filtro para visibilidade no nav escuro */
  /*filter: brightness(0) invert(1);*/
  /*transition: filter var(--transition);*/
}
/* Quando nav scrollado, deixar a logo com as cores reais */
.nav.scrolled .nav-logo-img {
  filter: none;
}
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  font-family: var(--font-body);
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.nav-cta {
  background: var(--gamboge) !important;
  color: var(--verde-dark) !important;
  font-weight: 800 !important;
  padding: 10px 22px !important;
  border-radius: 10px !important;
}
.nav-cta:hover {
  background: var(--gamboge-light) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  transition: background var(--transition);
}
.nav-hamburger span {
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger:hover { background: rgba(255,255,255,.15); }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(1,38,10,.94) 0%,
      rgba(1,46,12,.78) 50%,
      rgba(28,166,76,.55) 100%),
    url('/assets/images/bg.png') top/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(242,159,5,.14) 0%, transparent 60%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-particles::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,166,76,.14) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.hero-particles::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,159,5,.12) 0%, transparent 70%);
  bottom: -100px;
  left: 5%;
  animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(30px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px clamp(16px, 5vw, 80px) 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242,159,5,.18);
  border: 1px solid rgba(242,159,5,.4);
  color: var(--gamboge-light);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gamboge-light);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.6); }
}

/* Logo hero */
.hero-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 28px;
  display: block;
}

/* Logo hero */
.hero-logo-icon {
  height: 18px !important;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 80% !important;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.hero-title-accent {
  color: var(--gamboge-light);
  display: block;
}
.hero-year {
  font-family: var(--font-body);
  font-size: clamp(18px, 3vw, 34px);
  font-weight: 300;
  color: rgba(255,255,255,.65);
  letter-spacing: 8px;
  margin-bottom: 24px;
  display: block;
}
.hero-sub {
  font-size: clamp(30px, 2vw, 21px);
  color: rgba(255,255,255,.82);
 
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.55;
}
.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-meta-item {
  display: flex;
 
  gap: 10px;
  color: rgba(255,255,255,.88);
  font-size: 20px;
  font-weight: 600;
}
.hero-meta-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gamboge), #e69200);
  color: var(--verde-dark);
  font-size: 16px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 8px 28px rgba(242,159,5,.45);
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(242,159,5,.6);
  background: linear-gradient(135deg, var(--gamboge-light), var(--gamboge));
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.hero-stats {
  position: absolute;
  right: clamp(16px, 5vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}
.hero-stat {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  min-width: 140px;
}
.hero-stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--gamboge-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 20px!important;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

img.hero-logo-icon {
    height: 30px !important;
}

/* ================================================================
   SECTIONS COMMON
================================================================ */
.section {
  padding: clamp(60px, 10vw, 120px) clamp(16px, 5vw, 80px);
}
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--verde-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2.5px;
  background: var(--gamboge);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--verde-dark);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.section-desc {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--texto-soft);
  max-width: 620px;
  line-height: 1.75;
}

/* ================================================================
   SOBRE
================================================================ */
.sobre-section { background: var(--verde-subtle); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-visual { position: relative; }
.sobre-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--verde-dark), var(--verde-main));
  display: flex;
  align-items: center;
  justify-content: center;
}
.sobre-img-placeholder { text-align: center; padding: 40px; }
.sobre-img-icon { font-size: 72px; margin-bottom: 16px; display: block; }
.sobre-img-text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
}
/* Logo no bloco "sobre" */
.sobre-logo {
  /*max-width: 260px;*/
  width: 100% !important;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

.sobre-logo-1{
  /*max-width: 260px;*/
  width: 100% !important;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

.sobre-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gamboge);
  color: var(--verde-dark);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.sobre-badge-num { font-size: 36px; font-weight: 900; line-height: 1; }
.sobre-badge-label { font-size: 12px; font-weight: 700; margin-top: 4px; opacity: .85; }
.sobre-body {
  font-size: 16px;
  color: var(--texto-soft);
  line-height: 1.85;
  margin-bottom: 20px;
}
.sobre-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.pillar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--cinza-200);
  font-size: 14px;
  font-weight: 600;
  color: var(--verde-dark);
  transition: var(--transition);
}
.pillar-item:hover {
  border-color: var(--verde-main);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  color: var(--verde-main);
}
.pillar-icon { font-size: 20px; flex-shrink: 0; }

/* ================================================================
   DESTAQUES
================================================================ */
.destaques-section { background: #fff; }
/*.destaques-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
/*  gap: 24px;*/
/*  margin-top: 56px;*/
/*}*/

.destaques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media (max-width: 991px) {
  .destaques-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .destaques-grid {
    grid-template-columns: 1fr;
  }
}


.destaque-card {
  background: var(--seasalt);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.destaque-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--verde-main), var(--gamboge));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.destaque-card:hover {
  background: #fff;
  border-color: var(--verde-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.destaque-card:hover::before { transform: scaleX(1); }
.destaque-icon {
  width: 60px;
  height: 60px;
  background: var(--verde-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.destaque-card:hover .destaque-icon {
  background: var(--verde-main);
}
.destaque-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--verde-dark);
  margin-bottom: 10px;
}
.destaque-desc { font-size: 14px; color: var(--texto-soft); line-height: 1.75; }

/* ================================================================
   PATROCINADORES
================================================================ */
.patrocinadores-section {
  background: var(--seasalt);
  padding: clamp(40px,6vw,80px) clamp(16px,5vw,80px);
  border-top: 3px solid var(--gamboge);
  border-bottom: 3px solid var(--gamboge);
}
.patrocinadores-inner { max-width: 1240px; margin: 0 auto; }
.patrocinadores-label {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--cinza-500);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.patrocinadores-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.patrocinador-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 40px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--cinza-200);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.patrocinador-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gamboge);
  transform: translateY(-3px);
}
.patrocinador-item img {
  height: 100% !important;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 500px;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.patrocinador-item:hover img { filter: grayscale(0%); }

/* ================================================================
   CREDENCIAMENTO / FORM
================================================================ */
.credenciamento-section {
  background: linear-gradient(180deg, var(--verde-dark) 0%, var(--verde-mid) 100%);
  position: relative;
  overflow: hidden;
}
.credenciamento-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* Gamboge accent bar */
.credenciamento-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gamboge), var(--gamboge-light), var(--gamboge));
}
.credenciamento-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.credenciamento-info .section-label { color: var(--gamboge-light); }
.credenciamento-info .section-label::before { background: var(--gamboge-light); }
.credenciamento-info .section-title { color: #fff; }
.credenciamento-info .section-desc { color: #fff; }
.form-benefits {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.benefit-icon {
  width: 36px;
  height: 36px;
  background: rgba(242,159,5,.15);
  border: 1px solid rgba(242,159,5,.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

/* FORM CARD */
.form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
  position: relative;
  z-index: 1;
  border-top: 4px solid var(--gamboge);
}
.form-card-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--cinza-200);
}
.form-card-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--verde-dark);
  margin-bottom: 6px;
}
.form-card-sub { font-size: 14px; color: var(--cinza-500); }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--texto-soft);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.form-group label span.req { color: #d32f2f; margin-left: 2px; }

.form-input,
.form-select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--cinza-300);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--texto);
  background: #fff;
  transition: all var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus {
  border-color: var(--verde-main);
  box-shadow: 0 0 0 3px rgba(28,166,76,.15);
}
.form-input::placeholder { color: var(--cinza-500); }
.form-input.error, .form-select.error { border-color: #d32f2f; }

.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cinza-500);
  pointer-events: none;
  font-size: 13px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-section-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--verde-main);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 22px 0 14px;
  padding-top: 18px;
  border-top: 1.5px solid var(--cinza-200);
}
.radio-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-pill label {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1.5px solid var(--cinza-300);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--texto-soft);
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 0;
  font-family: var(--font-body);
}
.radio-pill input:checked + label {
  background: var(--verde-pale);
  border-color: var(--verde-main);
  color: var(--verde-dark);
  font-weight: 700;
}
.radio-pill label:hover {
  border-color: var(--verde-main);
  background: var(--verde-subtle);
  color: var(--verde-dark);
}
.check-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.check-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--verde-main);
  cursor: pointer;
  flex-shrink: 0;
}
.check-option span {
  font-size: 14px;
  color: var(--texto-soft);
  font-weight: 500;
}
.field-error {
  font-size: 12px;
  color: #d32f2f;
  margin-top: 6px;
  display: none;
  font-weight: 500;
}
.field-error.show { display: block; }
.lgpd-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--cinza-100);
  border-radius: var(--radius-sm);
  margin-top: 8px;
  border: 1px solid var(--cinza-200);
}
.lgpd-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--verde-main);
  flex-shrink: 0;
  cursor: pointer;
}
.lgpd-check label {
  font-size: 13px;
  color: var(--cinza-700);
  line-height: 1.55;
  cursor: pointer;
}
.lgpd-check label a { color: var(--verde-main); text-decoration: underline; }

.btn-submit {
  width: 100%;
  height: 54px;
  background: linear-gradient(135deg, var(--verde-main), var(--verde-bright));
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(28,166,76,.35);
  font-family: var(--font-body);
}
.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(28,166,76,.5);
  background: linear-gradient(135deg, var(--verde-bright), var(--verde-light));
}
.btn-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.btn-submit .spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  display: none;
}
.form-msg.success {
  background: var(--verde-pale);
  color: var(--verde-dark);
  border: 1px solid #a5d6a7;
  display: block;
}
.form-msg.error {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
  display: block;
}
#box-quem-atende { display: none; margin-top: 14px; }

/* ================================================================
   INFORMAÇÕES DO EVENTO
================================================================ */
.info-section { background: var(--cinza-100); }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}
.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--cinza-200);
  transition: var(--transition);
}
.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  border-color: var(--gamboge);
}
.info-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--verde-pale), #c8f0d8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.info-card-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--cinza-500);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.info-card-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--verde-dark);
}
.info-card-sub { font-size: 13px; color: var(--cinza-500); margin-top: 2px; }
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #fff;
}
.map-wrapper iframe { width: 100%; height: 380px; border: none; display: block; }
.map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 24px;
  background: var(--verde-main);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}
.map-btn:hover {
  background: var(--verde-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--verde-dark);
  padding: 60px clamp(16px, 5vw, 80px) 32px;
  border-top: 4px solid var(--gamboge);
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}
.footer-brand-sub {
  font-size: 11px;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-desc {
  font-size: 14px;
  color: #fff;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 280px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  color: #fff
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color:#fff!important;
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gamboge-light); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: #fff!important; }
.footer-realizacao { font-size: 13px; color: #fff!important; }
.footer-realizacao span { color: var(--gamboge-light); font-weight: 700; }
.footer-divider {
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--gamboge), var(--verde-main));
  border-radius: 3px;
  margin: 16px 0;
}

/* ================================================================
   UTILITY
================================================================ */
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.hidden { display: none !important; }


.pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon-svg {
    width: 28px;
    height: 28px;
    display: block;
}

img.pillar-icon-svg {
    height: 40px !important;
}
.footer-realizacao {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-realizacao-logo {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}



.footer-realizacao {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-realizacao-link {
  display: inline-flex;
  align-items: center;
}

.footer-realizacao-logo {
  height: 28px;
  width: auto;
  display: block;
}
img.footer-realizacao-logo {
    width: 100px!important;
}

@media (max-width: 767px) {
  .patrocinador-item img {
   
    width: auto;
    max-width: 300px;
    object-fit: contain;
    display: block;
  }
}

/* ================================================================
   PROGRAMAÇÃO
================================================================ */
.programacao-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf7 100%);
}

.programacao-minimal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.programacao-minimal-card {
  background: #ffffff;
  border: 1px solid rgba(1, 38, 10, 0.08);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(1, 38, 10, 0.07);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.programacao-minimal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(1, 38, 10, 0.10);
  border-color: rgba(28, 166, 76, 0.18);
}

.programacao-minimal-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(1, 38, 10, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
}

.programacao-minimal-date {
  min-width: 84px;
  min-height: 84px;
  border-radius: 20px;
  background: var(--verde-dark);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}

.programacao-minimal-number {
  font-size: 34px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -1px;
}

.programacao-minimal-month {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.programacao-minimal-title-wrap {
  min-width: 0;
}

.programacao-minimal-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(28, 166, 76, 0.10);
  color: var(--verde-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.programacao-minimal-subtitle {
  margin-top: 10px;
  color: var(--cinza-700);
  font-size: 14px;
  line-height: 1.45;
}

.programacao-minimal-table {
  padding: 10px 22px 20px;
}

.programacao-minimal-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(1, 38, 10, 0.08);
}

.programacao-minimal-row:last-child {
  border-bottom: 0;
  padding-bottom: 6px;
}

.programacao-minimal-time {
  font-size: 15px;
  font-weight: 900;
  color: var(--verde-main);
  line-height: 1.4;
}

.programacao-minimal-event {
  font-size: 15px;
  line-height: 1.6;
  color: var(--texto-soft);
  font-weight: 700;
}

/* ================================================================
   PATROCINADORES
================================================================ */
.patrocinadores-section {
  background: var(--seasalt);
  padding: clamp(40px,6vw,80px) clamp(16px,5vw,80px);
  border-top: 3px solid var(--gamboge);
  border-bottom: 3px solid var(--gamboge);
}
.patrocinadores-inner { max-width: 1240px; margin: 0 auto; }
.patrocinadores-label {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--cinza-500);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.patrocinadores-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.patrocinador-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 40px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--cinza-200);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.patrocinador-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gamboge);
  transform: translateY(-3px);
}
.patrocinador-item img {
  height: 100% !important;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 500px;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.patrocinador-item:hover img { filter: grayscale(0%); }

/* ================================================================
   CREDENCIAMENTO / FORM
================================================================ */
.credenciamento-section {
  background: linear-gradient(180deg, var(--verde-dark) 0%, var(--verde-mid) 100%);
  position: relative;
  overflow: hidden;
}
.credenciamento-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* Gamboge accent bar */
.credenciamento-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gamboge), var(--gamboge-light), var(--gamboge));
}
.credenciamento-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.credenciamento-info .section-label { color: var(--gamboge-light); }
.credenciamento-info .section-label::before { background: var(--gamboge-light); }
.credenciamento-info .section-title { color: #fff; }
.credenciamento-info .section-desc { color: #fff; }
.form-benefits {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.benefit-icon {
  width: 36px;
  height: 36px;
  background: rgba(242,159,5,.15);
  border: 1px solid rgba(242,159,5,.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

/* FORM CARD */
.form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
  position: relative;
  z-index: 1;
  border-top: 4px solid var(--gamboge);
}
.form-card-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--cinza-200);
}
.form-card-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--verde-dark);
  margin-bottom: 6px;
}
.form-card-sub { font-size: 14px; color: var(--cinza-500); }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--texto-soft);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.form-group label span.req { color: #d32f2f; margin-left: 2px; }

.form-input,
.form-select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--cinza-300);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--texto);
  background: #fff;
  transition: all var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus {
  border-color: var(--verde-main);
  box-shadow: 0 0 0 3px rgba(28,166,76,.15);
}
.form-input::placeholder { color: var(--cinza-500); }
.form-input.error, .form-select.error { border-color: #d32f2f; }

.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cinza-500);
  pointer-events: none;
  font-size: 13px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-section-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--verde-main);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 22px 0 14px;
  padding-top: 18px;
  border-top: 1.5px solid var(--cinza-200);
}
.radio-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-pill label {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1.5px solid var(--cinza-300);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--texto-soft);
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 0;
  font-family: var(--font-body);
}
.radio-pill input:checked + label {
  background: var(--verde-pale);
  border-color: var(--verde-main);
  color: var(--verde-dark);
  font-weight: 700;
}
.radio-pill label:hover {
  border-color: var(--verde-main);
  background: var(--verde-subtle);
  color: var(--verde-dark);
}
.check-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.check-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--verde-main);
  cursor: pointer;
  flex-shrink: 0;
}
.check-option span {
  font-size: 14px;
  color: var(--texto-soft);
  font-weight: 500;
}
.field-error {
  font-size: 12px;
  color: #d32f2f;
  margin-top: 6px;
  display: none;
  font-weight: 500;
}
.field-error.show { display: block; }
.lgpd-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--cinza-100);
  border-radius: var(--radius-sm);
  margin-top: 8px;
  border: 1px solid var(--cinza-200);
}
.lgpd-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--verde-main);
  flex-shrink: 0;
  cursor: pointer;
}
.lgpd-check label {
  font-size: 13px;
  color: var(--cinza-700);
  line-height: 1.55;
  cursor: pointer;
}
.lgpd-check label a { color: var(--verde-main); text-decoration: underline; }

.btn-submit {
  width: 100%;
  height: 54px;
  background: linear-gradient(135deg, var(--verde-main), var(--verde-bright));
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(28,166,76,.35);
  font-family: var(--font-body);
}
.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(28,166,76,.5);
  background: linear-gradient(135deg, var(--verde-bright), var(--verde-light));
}
.btn-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.btn-submit .spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  display: none;
}
.form-msg.success {
  background: var(--verde-pale);
  color: var(--verde-dark);
  border: 1px solid #a5d6a7;
  display: block;
}
.form-msg.error {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
  display: block;
}
#box-quem-atende { display: none; margin-top: 14px; }

/* ================================================================
   INFORMAÇÕES DO EVENTO
================================================================ */
.info-section { background: var(--cinza-100); }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}
.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--cinza-200);
  transition: var(--transition);
}
.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  border-color: var(--gamboge);
}
.info-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--verde-pale), #c8f0d8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.info-card-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--cinza-500);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.info-card-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--verde-dark);
}
.info-card-sub { font-size: 13px; color: var(--cinza-500); margin-top: 2px; }
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #fff;
}
.map-wrapper iframe { width: 100%; height: 380px; border: none; display: block; }
.map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 24px;
  background: var(--verde-main);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}
.map-btn:hover {
  background: var(--verde-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--verde-dark);
  padding: 60px clamp(16px, 5vw, 80px) 32px;
  border-top: 4px solid var(--gamboge);
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}
.footer-brand-sub {
  font-size: 11px;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-desc {
  font-size: 14px;
  color: #fff;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 280px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gamboge-light); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-realizacao { font-size: 13px; color: #fff; }
.footer-realizacao span { color: var(--gamboge-light); font-weight: 700; }
.footer-divider {
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--gamboge), var(--verde-main));
  border-radius: 3px;
  margin: 16px 0;
}

/* ================================================================
   UTILITY
================================================================ */
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.hidden { display: none !important; }


.pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon-svg {
    width: 28px;
    height: 28px;
    display: block;
}

img.pillar-icon-svg {
    height: 40px !important;
}
.footer-realizacao {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-realizacao-logo {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}



.footer-realizacao {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-realizacao-link {
  display: inline-flex;
  align-items: center;
}

.footer-realizacao-logo {
  height: 28px;
  width: auto;
  display: block;
}
img.footer-realizacao-logo {
    width: 100px!important;
}

@media (max-width: 767px) {
  .patrocinador-item img {
   
    width: auto;
    max-width: 300px;
    object-fit: contain;
    display: block;
  }
}/* ================================================================
   PROGRAMAÇÃO
================================================================ */
.programacao-section {
  background:
    linear-gradient(180deg, rgba(249,249,249,0.96) 0%, rgba(242,253,245,0.96) 100%),
    url('/assets/images/bg.png') center/cover no-repeat;
  position: relative;
}

.programacao-wrapper {
  margin-top: 40px;
  background: linear-gradient(180deg, var(--gamboge) 0%, #eda004 100%);
  border-radius: 36px;
  padding: clamp(18px, 2.4vw, 26px);
  box-shadow: var(--shadow-lg);
}

.programacao-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: stretch;
}

.programacao-card + .programacao-card {
  margin-top: 16px;
}

.programacao-date {
  background: transparent;
  color: var(--verde-dark);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  text-transform: uppercase;
  text-align: center;
}

.programacao-date-number {
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.programacao-date-month {
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 0.92;
  font-weight: 900;
  color: #fff;
}

.programacao-content {
  background: var(--verde-dark);
  color: #fff;
  border-radius: 26px;
  padding: clamp(18px, 2.2vw, 24px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

.programacao-day-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--gamboge);
  color: var(--verde-dark);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

.programacao-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.programacao-item {
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.3;
  font-weight: 700;
  color: rgba(255,255,255,.95);
}

.programacao-item::marker {
  color: var(--gamboge-light);
}

/* ================================================================
   NOTEBOOKS PEQUENOS / TABLETS HORIZONTAIS
================================================================ */
@media (max-width: 1199px) {
  .programacao-wrapper {
    border-radius: 30px;
    padding: 20px;
  }
  .programacao-minimal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .programacao-card {
    grid-template-columns: 125px 1fr;
    gap: 16px;
  }

  .programacao-date {
    min-height: 140px;
  }

  .programacao-date-number {
    font-size: 52px;
    letter-spacing: -1px;
  }

  .programacao-date-month {
    font-size: 26px;
  }

  .programacao-content {
    border-radius: 22px;
    padding: 18px;
  }

  .programacao-day-pill {
    font-size: 18px;
    min-height: 38px;
    padding: 8px 16px;
  }

  .programacao-item {
    font-size: 15px;
    line-height: 1.4;
  }
}

/* ================================================================
   TABLET
================================================================ */
@media (max-width: 991px) {
  .hero-sub {
    font-size: clamp(21px, 3vw, 35px);
  }

  .programacao-minimal-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .programacao-wrapper {
    margin-top: 32px;
    border-radius: 26px;
    padding: 18px;
  }

  .programacao-card {
    grid-template-columns: 105px 1fr;
    gap: 14px;
  }

  .programacao-card + .programacao-card {
    margin-top: 14px;
  }

  .programacao-date {
    min-height: 120px;
    border-radius: 18px;
  }

  .programacao-date-number {
    font-size: 44px;
    line-height: 0.95;
  }

  .programacao-date-month {
    font-size: 22px;
    line-height: 1;
  }

  .programacao-content {
    border-radius: 20px;
    padding: 16px;
  }

  .programacao-day-pill {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .programacao-list {
    gap: 6px;
  }

  .programacao-item {
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
  }
}

/* ================================================================
   MOBILE
================================================================ */
@media (max-width: 767px) {
  .hero-sub {
    font-size: clamp(21px, 6vw, 35px);
  }

  .programacao-minimal-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .programacao-wrapper {
    margin-top: 28px;
    border-radius: 22px;
    padding: 14px;
  }

  .programacao-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .programacao-card + .programacao-card {
    margin-top: 14px;
  }

  .programacao-date {
    min-height: auto;
    padding: 10px 12px;
    flex-direction: row;
    gap: 8px;
    justify-content: flex-start;
    align-items: baseline;
    text-align: left;
  }

  .programacao-date-number {
    font-size: 40px;
    line-height: 1;
    letter-spacing: -1px;
  }

  .programacao-date-month {
    font-size: 22px;
    line-height: 1;
  }

  .programacao-content {
    border-radius: 18px;
    padding: 16px 14px;
  }

  .programacao-day-pill {
    width: 100%;
    min-height: 38px;
    padding: 8px 14px;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
  }

  .programacao-list {
    gap: 6px;
    padding-left: 18px;
  }

  .programacao-item {
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
  }
}

/* ================================================================
   MOBILE PEQUENO
================================================================ */
@media (max-width: 480px) {
  .hero-sub {
    font-size: clamp(20px, 6vw, 28px);
  }

  .programacao-minimal-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .programacao-wrapper {
    border-radius: 18px;
    padding: 12px;
  }

  .programacao-date {
    padding: 8px 10px;
    gap: 6px;
  }

  .programacao-date-number {
    font-size: 34px;
  }

  .programacao-date-month {
    font-size: 18px;
  }

  .programacao-content {
    border-radius: 16px;
    padding: 14px 12px;
  }

  .programacao-day-pill {
    font-size: 15px;
    min-height: 34px;
    padding: 7px 12px;
  }

  .programacao-item {
    font-size: 13px;
    line-height: 1.45;
  }
}
.sobre-logo {
  object-fit: cover;
  border-radius: 12px; /* opcional */
}
/* ================================================================
   FIELDDAY 2026 – SomaField — ajustes de identidade visual
================================================================ */
:root {
  --verde-dark: #031b08;
  --verde-mid: #063411;
  --verde-main: #17a34a;
  --verde-bright: #54d86f;
  --verde-light: #7de56d;
  --gamboge: #f2c230;
  --gamboge-light: #ffe36d;
  --gamboge-pale: #fff8d2;
}
.nav-inner { justify-content: end; }
.nav-brand { min-width: 190px; }
.nav-logo-img { height: 54px; width: 190px !important; object-fit: contain; filter: none; }
.hero-bg {
  background:
    linear-gradient(135deg, rgba(3,27,8,.94) 0%, rgba(6,52,17,.72) 45%, rgba(1,38,10,.52) 100%),
    url('/assets/images/fieldday-hero.jpg') center/cover no-repeat;
}
.hero-bg::after { background: radial-gradient(ellipse at 52% 44%, rgba(242,194,48,.22) 0%, transparent 58%); }
.hero-logo.fieldday-logo { width: min(200px, 92vw); height: auto; max-height: none; filter: drop-shadow(0 24px 48px rgba(0,0,0,.45)); !important}
.hero-sub { max-width: 760px; }
.hero-meta { align-items: stretch; }
.btn-primary, .btn-submit, .nav-cta, .map-btn { background: linear-gradient(135deg, var(--gamboge-light), var(--gamboge)) !important; color: var(--verde-dark) !important; }
.section-label { color: var(--verde-main); }
.section-label::before { background: var(--gamboge); }
.fieldday-cover-card img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-xl); }
.info-card-icon, .destaque-icon { background: linear-gradient(135deg, rgba(242,194,48,.16), rgba(23,163,74,.16)); }
.footer-logo { max-width: 260px; width: 100%; height: auto; filter: none !important; }
.ingresso-logo { width: 180px; height: auto; filter: none !important; }
.ingresso-data-evento { color: var(--gamboge-light) !important; }
