/* ==========================================================================
   DESIGN SYSTEM & RESET - BPMday 2026
   ========================================================================== */

:root {
  /* Cores Principais - Tema Escuro Corporativo Premium */
  --bg-dark-primary: #060911;
  --bg-dark-secondary: #0b1120;
  --bg-dark-card: rgba(15, 23, 42, 0.75);
  --bg-dark-card-hover: rgba(30, 41, 59, 0.85);

  /* Ouro Executivo (Cores Oficiais de Destaque) */
  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;
  --gold-glow: rgba(245, 158, 11, 0.35);

  /* Ciano / Tech Accent */
  --cyan-primary: #06b6d4;
  --cyan-glow: rgba(6, 182, 212, 0.25);

  /* Tipografia & Neutros */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 158, 11, 0.25);

  /* Dimensões & Raios */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --max-width: 1140px;

  /* Transições & Sombras */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 25px -5px rgba(245, 158, 11, 0.35);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-dark-primary);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Background Gradients & Effects */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 80% 10%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 20% 40%, rgba(245, 158, 11, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(11, 17, 32, 0.8) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  background: rgba(6, 9, 17, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.6rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand-wrapper {
  display: flex;
  align-items: center;
}

.abpmp-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
  display: block;
}

.brand-wrapper:hover .abpmp-logo-img {
  transform: scale(1.02);
}

.nav-cta-btn {
  display: none;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

@media (min-width: 768px) {
  .header {
    padding: 0.85rem 0;
  }
  .nav-container {
    justify-content: flex-end;
  }
  .brand-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .abpmp-logo-img {
    height: 81px;
  }
  .nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
}

/* ==========================================================================
   HERO SECTION (MOBILE FIRST)
   ========================================================================== */

.hero {
  padding: 2.5rem 0 3.5rem 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-light);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-title .highlight-gold {
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0.9rem 1.75rem;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  color: #060911;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #fef08a 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: var(--bg-dark-card);
  box-shadow: var(--shadow-card);
}

.hero-image-card img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(6, 9, 17, 0.95) 0%, rgba(6, 9, 17, 0.4) 60%, transparent 100%);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-overlay-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .hero {
    padding: 4rem 0 5rem 0;
  }
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .btn-primary {
    width: auto;
    display: inline-flex;
    padding: 1rem 2.25rem;
  }
}

/* ==========================================================================
   SEÇÃO "POR QUE PATROCINAR?"
   ========================================================================== */

.section-padding {
  padding: 3.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 2.5rem auto;
}

.section-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.section-subtitle-badge {
  display: inline-block;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: var(--cyan-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.benefit-card {
  background: var(--bg-dark-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-primary);
  opacity: 0.8;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  background: var(--bg-dark-card-hover);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.benefit-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.35rem;
}

.benefit-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.benefit-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
  .section-title {
    font-size: 2.25rem;
  }
}

/* ==========================================================================
   SEÇÃO COTAS DE PATROCÍNIO (SHOWCASE DA REFERÊNCIA)
   ========================================================================== */

.cotas-section {
  background: linear-gradient(180deg, var(--bg-dark-primary) 0%, var(--bg-dark-secondary) 50%, var(--bg-dark-primary) 100%);
  position: relative;
}

.cotas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.cota-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  transition: var(--transition-smooth);
}

.cota-card.cota-diamante {
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.08) 0%, rgba(15, 23, 42, 0.9) 100%);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.cota-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.badge-diamante { background: rgba(255, 255, 255, 0.15); color: #fff; border: 1px solid rgba(255, 255, 255, 0.3); }
.badge-ouro { background: rgba(245, 158, 11, 0.2); color: var(--gold-light); border: 1px solid rgba(245, 158, 11, 0.4); }
.badge-prata { background: rgba(148, 163, 184, 0.2); color: #cbd5e1; border: 1px solid rgba(148, 163, 184, 0.4); }
.badge-apoiador { background: rgba(6, 182, 212, 0.2); color: var(--cyan-primary); border: 1px solid rgba(6, 182, 212, 0.4); }

.cota-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 0.5rem;
}

.cota-details {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cota-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cota-list li {
  padding-left: 1.4em;
  position: relative;
  margin-bottom: 0.35rem;
}

.cota-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: 700;
}


@media (min-width: 768px) {
  .cotas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cotas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   SEÇÃO DE DESTAQUE
   ========================================================================== */

.highlight-banner-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.highlight-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.highlight-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.highlight-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 1.75rem auto;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .highlight-banner-card {
    padding: 3.5rem 3rem;
  }
  .highlight-title {
    font-size: 2.1rem;
  }
  .highlight-text {
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   SEÇÃO FORMULÁRIO / CONVERSÃO
   ========================================================================== */

.conversion-section {
  position: relative;
  padding: 4rem 0 5rem 0;
}

.form-wrapper-card {
  background: var(--bg-dark-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem 1.25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  max-width: 580px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1.1rem;
  background: rgba(11, 17, 32, 0.85);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
  background: rgba(15, 23, 42, 0.95);
}

.form-input.input-error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
}

.field-error-msg {
  font-size: 0.78rem;
  color: #f87171;
  margin-top: 0.35rem;
  display: none;
  font-weight: 600;
}

.lgpd-notice {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.45;
  text-align: center;
  margin-top: 1.25rem;
}

/* Form Response Cards */
.response-card {
  display: none;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  margin-top: 1rem;
}

.response-card.success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.response-card.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

.response-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.response-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-main);
}

/* Spinner */
.btn-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (min-width: 768px) {
  .form-wrapper-card {
    padding: 2.75rem 2.25rem;
  }
  .form-title {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   BARRA CTA FIXA MOBILE (STICKY BOTTOM BAR)
   ========================================================================== */

.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: rgba(6, 9, 17, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gold);
  padding: 0.75rem 1rem;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.6);
}

.mobile-sticky-cta.is-visible {
  transform: translateY(0);
}

.mobile-sticky-btn {
  width: 100%;
  min-height: 48px;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
}

@media (min-width: 768px) {
  .mobile-sticky-cta {
    display: none !important;
  }
}

/* ==========================================================================
   FOOTER INSTITUCIONAL
   ========================================================================== */

.footer {
  background: #04060c;
  border-top: 1px solid var(--border-light);
  padding: 3rem 0 2rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brand-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
}

.footer-links-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-link {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
  }
  .footer-links-group {
    justify-content: flex-end;
  }
}
