/* ==========================================================================
   POLITICAL LANDING PAGE - GERALDO DA SILVA (9999) - STYLE.CSS
   Estilo principal com variáveis de design, glassmorphism e tipografia premium.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN SYSTEM & VARIÁVEIS CSS
   -------------------------------------------------------------------------- */
:root {
  /* Paleta de Cores Institucionais */
  --primary-color: #0d5c3a;        /* Verde Bandeira Profundo */
  --primary-hover: #094229;
  --primary-light: #e8f5e9;
  --accent-gold: #f5a623;          /* Amarelo Ouro Elegante */
  --accent-gold-hover: #d98e14;
  --secondary-navy: #1a365d;       /* Azul Nobre */
  --secondary-navy-light: #2b4c7e;
  
  /* Escala de Cinzas & Fundos */
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-glass-dark: rgba(13, 92, 58, 0.92);
  --border-light: rgba(226, 232, 240, 0.8);
  --border-active: rgba(13, 92, 58, 0.3);

  /* Tipografia */
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --text-white: #ffffff;
  
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Sombras & Efeitos */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-gold: 0 8px 25px rgba(245, 166, 35, 0.35);
  --shadow-green: 0 8px 25px rgba(13, 92, 58, 0.25);
  --backdrop-blur: blur(12px);

  /* Transições & Bordas */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & REGRAS GERAIS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--secondary-navy);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.text-center {
  text-align: center;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--secondary-navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   3. BOTÕES & ELEMENTOS REUTILIZÁVEIS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  color: var(--text-white);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(13, 92, 58, 0.35);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
  color: var(--secondary-navy);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 166, 35, 0.45);
}

.btn-outline {
  background-color: transparent;
  color: var(--secondary-navy);
  border: 2px solid var(--secondary-navy);
}

.btn-outline:hover {
  background-color: var(--secondary-navy);
  color: var(--text-white);
  transform: translateY(-2px);
}

.badge-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
  color: var(--secondary-navy);
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  font-size: 1.125rem;
  letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   4. HEADER & NAVBAR FIXA
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 20px 0;
}

.header.scrolled {
  background-color: var(--bg-glass);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--border-light);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-text-box {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary-navy);
  line-height: 1;
}

.logo-party {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--secondary-navy);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding-top: 150px;
  padding-bottom: 100px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #eff6ff 100%);
  overflow: hidden;
}

.hero-bg-shape-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 92, 58, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-shape-2 {
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-content {
  z-index: 2;
}

.hero-party-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-light);
  border: 1px solid rgba(13, 92, 58, 0.15);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-party-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-color);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary-navy);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-title span {
  color: var(--primary-color);
  display: block;
}

.hero-subtitle-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-position {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-slogan {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 36px;
  padding-left: 20px;
  border-left: 4px solid var(--accent-gold);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-card);
  background: var(--bg-card);
  transition: var(--transition-normal);
}

.hero-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.hero-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top center;
}

.hero-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--bg-glass-dark);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  padding: 20px;
  border-radius: var(--radius-md);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-badge-info h4 {
  color: var(--text-white);
  font-size: 1.125rem;
  margin-bottom: 2px;
}

.hero-badge-info p {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   6. BIOGRAFIA (QUEM É O CANDIDATO)
   -------------------------------------------------------------------------- */
.bio-section {
  background-color: var(--bg-card);
  position: relative;
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.bio-image-box {
  position: relative;
}

.bio-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.bio-experience-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-color);
  color: var(--text-white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-green);
  text-align: center;
}

.bio-experience-card .number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-gold);
}

.bio-experience-card .label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 4px;
}

.bio-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  background-color: var(--bg-main);
  padding: 20px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-active);
  background-color: var(--primary-light);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   7. VALORES SECTION
   -------------------------------------------------------------------------- */
.values-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, #f1f5f9 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background-color: var(--bg-card);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
  transition: var(--transition-normal);
  opacity: 0;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.value-card:hover .value-icon-box {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.value-icon-box svg {
  width: 30px;
  height: 30px;
}

.value-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--secondary-navy);
}

.value-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. PROPOSTAS SECTION (TABBED CATEGORIES)
   -------------------------------------------------------------------------- */
.proposals-section {
  background-color: var(--bg-card);
}

.proposals-nav-container {
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.proposals-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.proposal-tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-normal);
  white-space: nowrap;
}

.proposal-tab-btn svg {
  width: 20px;
  height: 20px;
}

.proposal-tab-btn:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-color: rgba(13, 92, 58, 0.2);
}

.proposal-tab-btn.active {
  background-color: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-green);
}

.proposals-display-header {
  background: linear-gradient(135deg, var(--secondary-navy), #0f172a);
  color: var(--text-white);
  padding: 32px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.proposals-display-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.proposals-display-icon svg {
  width: 32px;
  height: 32px;
}

.proposals-display-info h3 {
  color: var(--text-white);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.proposals-display-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.proposals-list-container {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 40px 32px;
}

.proposals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.proposal-item-card {
  background-color: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.proposal-item-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-active);
}

.proposal-badge {
  width: 36px;
  height: 36px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.proposal-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   9. GALERIA & LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-section {
  background: linear-gradient(180deg, #f1f5f9 0%, var(--bg-main) 100%);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background-color: #cbd5e1;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(13, 92, 58, 0.9) 0%, rgba(13, 92, 58, 0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--text-white);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  font-size: 1rem;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  color: var(--text-white);
  font-size: 1.125rem;
  margin-top: 16px;
  text-align: center;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--accent-gold);
  color: var(--secondary-navy);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--primary-color);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* --------------------------------------------------------------------------
   10. CONTATO SECTION
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: var(--bg-card);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--secondary-navy), #0f172a);
  color: var(--text-white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
  color: var(--text-white);
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.contact-detail-icon svg {
  width: 24px;
  height: 24px;
}

.contact-detail-text span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

.contact-detail-text strong {
  font-size: 1.1rem;
  color: var(--text-white);
}

.social-links-box {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--accent-gold);
  color: var(--secondary-navy);
  transform: translateY(-3px);
}

.contact-form-container {
  background-color: var(--bg-main);
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary-navy);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition-normal);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 92, 58, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-success-msg {
  display: none;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border: 1px solid rgba(13, 92, 58, 0.3);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   11. RODAPÉ (FOOTER)
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--secondary-navy);
  color: var(--text-white);
  padding-top: 70px;
  padding-bottom: 30px;
  border-top: 4px solid var(--primary-color);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-title {
  font-size: 1.8rem;
  color: var(--text-white);
}

.footer-slogan {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
}

.footer-col-title {
  font-size: 1.125rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-menu a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-legal-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   12. ANIMAÇÕES SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
