/* ===================================
   FRAME TECNOLOGIA - Landing Page
   3ª Jornada Científica
   DESIGN MINIMALISTA REFINADO
   =================================== */

/* ===================================
   FONTE SAN FRANCISCO (Apple)
   =================================== */
@font-face {
  font-family: 'SF Pro Display';
  src: url('../assets/fonts/SF-Pro-Display-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('../assets/fonts/SF-Pro-Display-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('../assets/fonts/SF-Pro-Display-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('../assets/fonts/SF-Pro-Display-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('../assets/fonts/SF-Pro-Text-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('../assets/fonts/SF-Pro-Text-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('../assets/fonts/SF-Pro-Text-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('../assets/fonts/SF-Pro-Text-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* CSS Variables - Paleta Sofisticada */
:root {
  --white: #FFFFFF;
  --black: #0A0A0A;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --accent: #E63946;
  --accent-hover: #D62839;
  --accent-light: rgba(230, 57, 70, 0.1);

  /* Verde WhatsApp para CTAs */
  --cta-green: #25D366;
  --cta-green-hover: #128C7E;
  --cta-green-light: rgba(37, 211, 102, 0.1);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'SF Pro Text', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif !important;
  color: var(--gray-900);
  background-color: var(--white);
  line-height: 1.7;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  font-family: inherit !important;
}

/* Scrollbar Personalizada - Vermelho e Branco */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: #ed3237;
  border-radius: 5px;
  border: 2px solid var(--white);
}

::-webkit-scrollbar-thumb:hover {
  background: #d62839;
}

/* Typography Refinada */
h1, h2, h3, h4, h5, h6 {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-600);
}

p {
  margin: 0 0 1.5rem 0;
  line-height: 1.8;
  color: var(--gray-700);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--accent-hover);
}

strong {
  font-weight: 600;
  color: var(--gray-900);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sections */
.section {
  padding: 120px 0;
  position: relative;
}

/* Separador visual sutil entre seções */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
}

.section:first-of-type::before {
  display: none;
}

.section-alt {
  background-color: var(--gray-50);
}

.section-alt::before {
  display: none;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 20px;
}

/* Linha decorativa vermelha abaixo do título */
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 80px;
  margin-top: 16px;
}

/* ===================================
   ANIMAÇÕES DE ENTRADA
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Scroll-based animations */
.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for scroll animations */
.scroll-delay-1 { transition-delay: 0.1s; }
.scroll-delay-2 { transition-delay: 0.2s; }
.scroll-delay-3 { transition-delay: 0.3s; }
.scroll-delay-4 { transition-delay: 0.4s; }

/* ===================================
   HERO SECTION - REFINADO
   =================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 120px 2rem;
  position: relative;
  overflow: hidden;
}

/* Pattern removido */
.hero-pattern {
  display: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.logo-jornada {
  max-width: 600px;
  height: auto;
  margin: 0 auto 50px;
  display: block;
}

/* Logo Instituto escondida no hero - só aparece no footer */
.hero-section .logo-instituto {
  display: none;
}

.hero-title {
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  margin-bottom: 48px;
  color: var(--gray-600);
  font-weight: 400;
}

/* Badge Elegante para Data */
.hero-date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px 40px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.hero-date-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.badge-date {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

/* Badge Presencial */
.presencial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.presencial-badge svg {
  width: 14px;
  height: 14px;
}

/* Hero Info com Ícones */
.hero-info {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-700);
  font-size: 1rem;
  font-weight: 500;
}

.info-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* CTA Button Refinado - VERDE WHATSAPP */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cta-green);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  transition: all var(--transition-base);
  border: none;
  box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.35);
}

.cta-button:hover {
  background: var(--cta-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px 0 rgba(37, 211, 102, 0.45);
}

.button-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
}

.cta-button:hover .button-icon {
  transform: translateX(4px);
}

/* ===================================
   SOBRE O EVENTO
   =================================== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.content-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.content-highlight {
  background: var(--white);
  padding: 48px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.content-highlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.content-highlight h3 {
  margin-bottom: 32px;
  color: var(--black);
}

.target-list {
  list-style: none;
  padding: 0;
}

.target-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 1rem;
  color: var(--gray-700);
  transition: all var(--transition-fast);
  position: relative;
  padding-left: 24px;
}

.target-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition-fast);
}

.target-list li:hover {
  padding-left: 28px;
  color: var(--black);
}

.target-list li:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.target-list li:last-child {
  border-bottom: none;
}

/* ===================================
   NUVEM DE TAGS - "ESTE EVENTO É PARA"
   =================================== */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.tag {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  border: 1.5px solid var(--gray-300);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

.tag:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(230, 57, 70, 0.15);
}

/* ===================================
   PROGRAMAÇÃO - TABS REFINADOS
   =================================== */
.tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 80px;
  background: var(--white);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.tab-button {
  background: transparent;
  border: none;
  color: var(--gray-600);
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  border-radius: 8px;
  flex: 1;
}

.tab-button:hover {
  color: var(--black);
  background: var(--gray-100);
}

.tab-button.active {
  color: var(--white);
  background: var(--accent);
  box-shadow: var(--shadow-md);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Timeline Refinada */
.timeline {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 48px;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.timeline-item:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.timeline-time {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-top: 4px;
}

.time-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.timeline-content h3 {
  margin-bottom: 8px;
  color: var(--black);
}

.timeline-content h4 {
  margin-bottom: 8px;
  color: var(--accent);
}

.timeline-content p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Featured removido - todos os itens uniformes */

.timeline-item.break {
  background: var(--gray-50);
  border-style: dashed;
}

.timeline-item.break:hover {
  transform: none;
}

/* ===================================
   FORMULÁRIO - DESTAQUE TOTAL
   =================================== */
.section-inscricao {
  background: linear-gradient(to bottom, var(--gray-50) 0%, var(--white) 100%);
  padding: 140px 0;
}

.inscricao-header {
  text-align: center;
  margin-bottom: 80px;
}

.urgency-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.inscricao-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Card do Formulário - DESTAQUE */
.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 64px;
  box-shadow: 0 8px 40px -12px rgba(0, 0, 0, 0.12), 0 4px 25px -5px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}

.form-card:hover {
  box-shadow: 0 12px 50px -12px rgba(0, 0, 0, 0.15), 0 6px 30px -5px rgba(0, 0, 0, 0.1);
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
}

.inscricao-badge {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white);
  padding: 20px 32px;
  text-align: center;
  font-weight: 600;
  margin: -64px -64px 48px -64px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.form-header {
  text-align: center;
  margin-bottom: 56px;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.form-subtitle {
  color: var(--gray-600);
  font-size: 1rem;
  font-weight: 400;
}

.form-group {
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-900);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="file"],
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  transition: all var(--transition-base);
  color: var(--gray-900);
  font-weight: 500;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-group input::placeholder {
  color: var(--gray-400);
}

.form-group small {
  display: block;
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-top: 8px;
  font-style: italic;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.radio-label {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  transition: all var(--transition-base);
  background: var(--white);
}

.radio-label:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
  transform: translateX(2px);
}

.radio-label input[type="radio"]:checked + span {
  font-weight: 600;
  color: var(--accent);
}

.radio-label:has(input[type="radio"]:checked) {
  border-color: var(--accent);
  background: var(--accent-light);
}

.radio-label input[type="radio"] {
  margin-right: 16px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

.radio-label span {
  font-size: 1rem;
  color: var(--gray-700);
  transition: all var(--transition-fast);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  padding: 16px;
  border-radius: 8px;
  transition: background var(--transition-fast);
}

.checkbox-label:hover {
  background: var(--gray-50);
}

.checkbox-label input[type="checkbox"] {
  width: 22px;
  height: 22px;
  cursor: pointer;
  accent-color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label span {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* Submit Button - VERDE WHATSAPP */
.submit-button {
  width: 100%;
  background: var(--cta-green);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  padding: 22px 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
  margin-top: 32px;
  box-shadow: 0 8px 24px 0 rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.submit-button:hover {
  background: var(--cta-green-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px 0 rgba(37, 211, 102, 0.5);
}

.submit-button:hover .button-icon {
  transform: translateX(4px);
}

.submit-button:active {
  transform: translateY(-1px);
}

.submit-button:disabled {
  background: var(--gray-300);
  color: var(--gray-600);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ===================================
   REGRAS DE REEMBOLSO - BOX SCROLL
   =================================== */
.regras-scroll-box {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  max-height: 240px;
  overflow-y: auto;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.regras-scroll-box p {
  margin-bottom: 20px;
}

.regras-scroll-box p:last-child {
  margin-bottom: 0;
}

.regras-scroll-box strong {
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}

.regras-scroll-box a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.regras-scroll-box a:hover {
  color: var(--accent-hover);
}

/* Scrollbar do box de regras */
.regras-scroll-box::-webkit-scrollbar {
  width: 8px;
}

.regras-scroll-box::-webkit-scrollbar-track {
  background: var(--gray-200);
  border-radius: 8px;
  margin: 4px;
}

.regras-scroll-box::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
}

.regras-scroll-box::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover);
}

/* ===================================
   REGRAS DE REEMBOLSO - SEÇÃO
   =================================== */
.regras-box {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.regra-item {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--gray-200);
  transition: all var(--transition-base);
}

.regra-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.regra-item h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: var(--black);
}

.regra-item p {
  margin: 0;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
}

.regra-note {
  background: var(--white);
  padding: 48px;
  margin-top: 48px;
  border-radius: 12px;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.regra-note p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
}

/* ===================================
   CONTATO
   =================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--black);
}

.contact-info p {
  margin-bottom: 32px;
  line-height: 1.8;
  color: var(--gray-700);
}

.contact-info strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--accent);
  font-weight: 700;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  display: block;
  width: 100%;
}

/* ===================================
   FOOTER - REFINADO
   =================================== */
.footer {
  background: var(--gray-900);
  padding: 64px 0;
  text-align: center;
  border-top: 1px solid var(--gray-800);
}

.footer-logo {
  max-width: 200px;
  height: auto;
  margin: 0 auto 32px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer p {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.8;
}

/* ===================================
   MENSAGENS DE FEEDBACK
   =================================== */
.success-message {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: var(--white);
  padding: 20px 32px;
  text-align: center;
  margin-top: 32px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.error-message {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white);
  padding: 20px 32px;
  text-align: center;
  margin-top: 32px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===================================
   UTILITY
   =================================== */
.loading {
  opacity: 0.6;
  pointer-events: none;
  filter: grayscale(0.5);
}

/* ===================================
   CTA FLUTUANTE MOBILE
   =================================== */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 100%);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 1000;
}

.floating-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--cta-green);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
}

.floating-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

.floating-cta-button svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .floating-cta {
    display: block;
  }

  /* Espaço extra no footer para não cobrir conteúdo */
  .footer {
    padding-bottom: 100px;
  }
}

/* ===================================
   RESPONSIVE - MOBILE FIRST
   =================================== */

/* Tablets */
@media (max-width: 992px) {
  .section {
    padding: 100px 0;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .timeline-item {
    grid-template-columns: 120px 1fr;
    gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .regras-box {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 48px;
  }

  .inscricao-badge {
    margin: -48px -48px 40px -48px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .section-inscricao {
    padding: 100px 0;
  }

  .section-title {
    margin-bottom: 0.75rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .hero-section {
    padding: 80px 1.5rem;
  }

  .logo-jornada {
    max-width: 340px;
    margin-bottom: 32px;
  }

  .hero-date-badge {
    padding: 16px 32px;
    margin-bottom: 40px;
  }

  .badge-date {
    font-size: 1.125rem;
  }

  .hero-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    margin-bottom: 48px;
  }

  .cta-button {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-card {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .inscricao-badge {
    margin: -32px -24px 32px -24px;
    padding: 16px 24px;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .tabs {
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .tab-button {
    border-radius: 0;
    border-bottom: 2px solid var(--gray-200);
    padding: 18px 16px;
    text-align: left;
  }

  .tab-button.active {
    border-radius: 8px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .timeline-item:hover {
    transform: translateY(-2px);
  }

  .timeline-time {
    flex-direction: row;
  }

  .content-highlight {
    padding: 32px 24px;
  }

  .regras-scroll-box {
    font-size: 0.875rem;
    padding: 20px;
    max-height: 220px;
  }

  .submit-button {
    padding: 18px 28px;
    font-size: 1rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .logo-jornada {
    max-width: 280px;
  }

  .hero-date-badge {
    padding: 14px 24px;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .form-card {
    padding: 24px 20px;
  }

  .inscricao-badge {
    margin: -24px -20px 24px -20px;
  }

  .timeline-item {
    padding: 20px;
  }

  .submit-button {
    font-size: 0.95rem;
  }
}
