/* ==========================================================================
   SITE AV LEADERSHIP — ESTILO PREMIUM
   ========================================================================== */

/* Cores e Variáveis Oficiais */
:root {
  --navy:        #0D1F3C;  /* cor principal — fundos escuros, títulos */
  --navy-2:      #1A3057;  /* navy secundário — cards, seções */
  --gold:        #C8A84B;  /* dourado — destaques, botões, detalhes */
  --gold-light:  #F2D98B;  /* dourado claro — hover, gradientes */
  --white:       #FFFFFF;
  --off-white:   #F7F8FA;  /* fundos claros de seção */
  --grey:        #444444;  /* texto corrido */
  --light-grey:  #E8E8E8;  /* bordas, divisores */
  --muted:       #8899BB;  /* texto secundário sobre navy */
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --header-height: 80px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 8px;
  --box-shadow: 0 4px 20px rgba(13, 31, 60, 0.08);
  --box-shadow-hover: 0 10px 30px rgba(13, 31, 60, 0.15);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--grey);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* Utilitários de Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

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

.text-gold {
  color: var(--gold);
}

.text-white {
  color: var(--white) !important;
}

.text-muted {
  color: var(--muted) !important;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-gold:hover, .btn-gold:focus {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* Seções estruturadas */
.section-header {
  margin-bottom: 60px;
}

.subtitle-gold {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.section-subtitle-text {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.title-divider {
  width: 60px;
  height: 3px;
  background-color: var(--gold);
  margin: 20px auto 0;
}

/* ==========================================================================
   HEADER FIXO (STICKY)
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-grey);
  z-index: 1000;
  transition: var(--transition);
}

/* Se o header rolar, aplicar sombra */
.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(13, 31, 60, 0.05);
  height: 70px;
}

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

.header-logo {
  height: 48px;
  width: auto;
  display: block;
}

.main-header.scrolled .header-logo {
  height: 42px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Responsivo para o Header */
@media (max-width: 991px) {
  .header-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - var(--header-height));
    background-color: var(--white);
    border-right: 1px solid var(--light-grey);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
    gap: 30px;
    box-shadow: 10px 0 30px rgba(0,0,0,0.05);
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .main-nav.open {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .nav-link {
    font-size: 1.1rem;
    display: block;
    width: 100%;
  }

  .header-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 10px;
  }

  /* Hamburger animado */
  .mobile-menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .mobile-menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
}

/* ==========================================================================
   HERO (DOBRA PRINCIPAL)
   ========================================================================== */
.hero-section {
  background-color: var(--navy);
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(200, 168, 75, 0.15) 0%, transparent 60%);
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 24px;
  background-color: rgba(200, 168, 75, 0.05);
}

.hero-title {
  color: var(--white);
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-card {
  background: linear-gradient(135deg, var(--navy-2) 0%, #132442 100%);
  border: 1px solid rgba(200, 168, 75, 0.2);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 400px;
}

.hero-center-logo {
  max-width: 220px;
  margin-bottom: 30px;
}

.hero-quote-box {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.quote-icon {
  font-family: var(--font-title);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-top: -15px;
  margin-bottom: 5px;
}

.hero-quote-box p {
  font-size: 0.95rem;
  color: var(--white);
  font-style: italic;
  margin-bottom: 15px;
}

.hero-quote-box cite {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual-card {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
}

/* ==========================================================================
   SOBRE (FUNDO CLARO)
   ========================================================================== */
.about-section {
  background-color: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.about-text-content .lead {
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-text-content p {
  margin-bottom: 20px;
}

.about-text-content p:last-of-type {
  margin-bottom: 40px;
}

.pillars-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pillar-item {
  display: flex;
  gap: 16px;
}

.pillar-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: rgba(200, 168, 75, 0.1);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
}

.pillar-text h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.pillar-text p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Container de Foto Profissional */
.profile-photo-wrapper {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  transition: var(--transition);
}

.profile-photo-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.profile-photo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 60%, rgba(200, 168, 75, 0.25) 0%, var(--navy) 85%);
  z-index: 1;
}

.profile-photo-img {
  position: relative;
  height: 95%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  z-index: 2;
  transition: var(--transition);
  display: block;
}

.profile-photo-wrapper:hover .profile-photo-img {
  transform: scale(1.03);
}

.profile-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(13, 31, 60, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 168, 75, 0.3);
  border-radius: var(--border-radius);
  padding: 12px;
  text-align: center;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.profile-photo-badge .badge-title {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.05rem;
}

.profile-photo-badge .badge-subtitle {
  display: block;
  font-size: 0.75rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .profile-photo-wrapper {
    max-width: 320px;
  }
}

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

/* ==========================================================================
   ENSINAMENTOS / CARDS (FUNDO BRANCO/OFF-WHITE ALTERNADO)
   ========================================================================== */
.teachings-section {
  background-color: var(--white);
}

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

.teaching-card {
  background-color: var(--off-white);
  border: 1px solid var(--light-grey);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
}

.teaching-card:hover {
  transform: translateY(-5px);
  background-color: var(--white);
  border-color: rgba(200, 168, 75, 0.4);
  box-shadow: var(--box-shadow-hover);
}

.card-number {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--grey);
}

/* Quote Box */
.quote-block-container {
  margin-top: 80px;
}

.quote-block {
  background-color: var(--navy);
  border-radius: var(--border-radius);
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(200, 168, 75, 0.2);
  position: relative;
}

.quote-text {
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--gold);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
  font-style: italic;
}

.quote-line {
  width: 50px;
  height: 2px;
  background-color: var(--gold-light);
  margin: 20px auto 0;
}

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

@media (max-width: 768px) {
  .teachings-grid {
    grid-template-columns: 1fr;
  }
  
  .quote-text {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   E-BOOK (FUNDO NAVY)
   ========================================================================== */
.ebook-section {
  background-color: var(--navy);
  color: var(--white);
  position: relative;
}

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

.ebook-visual {
  display: flex;
  justify-content: center;
}

.ebook-section-title {
  color: var(--white);
  font-size: 2.25rem;
  margin-top: 10px;
  margin-bottom: 20px;
}

.ebook-desc {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

/* Ebook 3D Mockup */
.ebook-mockup-wrapper {
  position: relative;
  perspective: 1000px;
  width: 260px;
  height: 360px;
}

.ebook-3d-book {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-20deg) rotateX(10deg);
  transition: transform 0.5s ease;
}

.ebook-mockup-wrapper:hover .ebook-3d-book {
  transform: rotateY(-10deg) rotateX(5deg);
}

.book-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
  border: 1px solid var(--gold);
  border-radius: 4px 12px 12px 4px;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.3);
  z-index: 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.book-cover-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(to right, rgba(200, 168, 75, 0.6) 0%, rgba(200, 168, 75, 0) 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.book-cover-content {
  padding: 30px 20px 30px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 3;
}

.book-brand {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

.book-logo {
  width: 48px;
  height: auto;
  align-self: center;
  margin: 10px 0;
}

.book-title {
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
}

.book-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.4;
}

.book-badge-text {
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  background-color: var(--gold);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-top: auto;
}

.book-side {
  position: absolute;
  top: 0;
  left: -15px;
  width: 15px;
  height: 100%;
  background-color: #12223b;
  transform: rotateY(-90deg);
  transform-origin: right;
  border-radius: 4px 0 0 4px;
  border: 1px solid rgba(200, 168, 75, 0.3);
  z-index: 1;
}

.mockup-shadow {
  position: absolute;
  bottom: -20px;
  left: 10px;
  width: 250px;
  height: 15px;
  background-color: rgba(0,0,0,0.4);
  filter: blur(10px);
  border-radius: 50%;
  transform: rotateX(85deg);
  z-index: 0;
}

/* Formulário de Captura Geral */
.capture-form {
  background-color: var(--navy-2);
  border: 1px solid rgba(200, 168, 75, 0.15);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 35px rgba(0,0,0,0.2);
}

.honeypot-group {
  display: none !important;
  visibility: hidden;
}

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

.form-group label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.required {
  color: var(--gold);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: rgba(13, 31, 60, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 6px;
  transition: var(--transition);
  min-height: 48px;
}

.form-group textarea {
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* Foco de Entrada */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background-color: rgba(13, 31, 60, 0.8);
  box-shadow: 0 0 0 3px rgba(200, 168, 75, 0.15);
}

/* Estilos de Validação nativos do navegador */
.form-group input:user-invalid,
.form-group textarea:user-invalid {
  border-color: #E74C3C;
  background-color: rgba(231, 76, 60, 0.05);
}

.form-group input:user-invalid + .error-msg,
.form-group textarea:user-invalid + .error-msg {
  display: flex;
}

/* Erro inline */
.error-msg {
  display: none;
  align-items: center;
  gap: 6px;
  color: #E74C3C;
  font-size: 0.8rem;
  margin-top: 6px;
  font-weight: 500;
}

.form-status-msg {
  display: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-weight: 500;
  text-align: center;
}

.form-status-msg.success {
  display: block;
  background-color: rgba(46, 204, 113, 0.15);
  border: 1px solid #2ECC71;
  color: #2ECC71;
}

.form-status-msg.error {
  display: block;
  background-color: rgba(231, 76, 60, 0.15);
  border: 1px solid #E74C3C;
  color: #E74C3C;
}

.form-security-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 15px;
}

/* Spinner no envio do formulário */
.btn-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(13, 31, 60, 0.25);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
}

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

.btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn.loading .btn-spinner {
  display: inline-block;
}

@media (max-width: 991px) {
  .ebook-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ==========================================================================
   CONTATO (FUNDO CLARO)
   ========================================================================== */
.contact-section {
  background-color: var(--white);
}

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

.contact-info-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 12px;
  display: inline-block;
}

.contact-info-desc {
  margin-bottom: 40px;
}

.contact-details-list {
  list-style: none;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: var(--off-white);
  color: var(--navy);
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.detail-label {
  display: block;
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.detail-link {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

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

/* Ações de Redes Sociais */
.social-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: var(--border-radius);
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.btn-whatsapp-direct {
  background-color: #25D366;
}

.btn-whatsapp-direct:hover {
  background-color: #20BA56;
}

.btn-instagram-direct {
  background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
}

.btn-instagram-direct:hover {
  opacity: 0.95;
}

.icon-social {
  width: 20px;
  height: 20px;
}

/* Modificações específicas para o formulário de contato */
.contact-form-wrapper .capture-form {
  background-color: var(--off-white);
  border: 1px solid var(--light-grey);
  box-shadow: var(--box-shadow);
}

.contact-form-wrapper .form-group label {
  color: var(--navy);
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  color: var(--navy);
}

.contact-form-wrapper .form-group input::placeholder,
.contact-form-wrapper .form-group textarea::placeholder {
  color: #999;
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus {
  border-color: var(--gold);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 168, 75, 0.1);
}

.contact-form-wrapper .form-group input:user-invalid,
.contact-form-wrapper .form-group textarea:user-invalid {
  border-color: #E74C3C;
  background-color: rgba(231, 76, 60, 0.02);
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ==========================================================================
   CERTIFICAÇÕES / BADGES (FUNDO ESCURO / NAVY)
   ========================================================================== */
.credentials-section {
  background-color: var(--navy);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.badge-card {
  background-color: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 24px 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.badge-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 168, 75, 0.4);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  background-color: rgba(26, 48, 87, 0.8);
}

.badge-image-container {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.badge-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
  transition: var(--transition);
}

.badge-card:hover .badge-img {
  transform: scale(1.05);
}

.badge-title {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}

.badge-issuer {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  display: block;
}

@media (max-width: 1100px) {
  .badges-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

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

/* ==========================================================================
   RODAPÉ (FUNDO NAVY)
   ========================================================================== */
.main-footer {
  background-color: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 80px;
}

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

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-quote {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 25px;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background-color: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.footer-social-link:hover {
  background-color: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 24px;
  border-left: 2px solid var(--gold);
  padding-left: 10px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--muted);
}

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

.footer-contact-section p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer-contact-section a:hover {
  color: var(--gold);
}

/* Bottom Footer */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.copyright-text {
  font-size: 0.8rem;
  color: var(--muted);
}

.disclaimer-text {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 550px;
  text-align: right;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
  
  .disclaimer-text {
    text-align: center;
    max-width: 100%;
  }
}

/* ==========================================================================
   CLASSES AUXILIARES — SEGURANÇA / MANUTENÇÃO
   ========================================================================== */

/* Substituição dos estilos inline dos rótulos de pilar nos cards de ensinamentos */
.card-pillar-label {
  font-size: 0.75rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

/* Microcopy da seção e-book (antes como inline style) */
.ebook-microcopy {
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: var(--font-title);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-fade {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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