/* ==========================================================================
   ADAPT - AGÊNCIA DE MARKETING DIGITAL
   Design System & Estilização Global
   Localização: Matão - SP, Brasil
   Inspirado no estilo Zenity (Dark Glassmorphism)
   ========================================================================== */

/* IMPORTAÇÃO DE FONTES DO GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,300..900;1,300..900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --------------------------------------------------------------------------
   1. VARIÁVEIS DO DESIGN SYSTEM (CSS CUSTOM PROPERTIES)
   -------------------------------------------------------------------------- */
:root {
  /* Paleta de Cores Oficial ADAPT */
  --bg-dark: #0A0A1A;
  --bg-dark-secondary: #101026;
  --card-glass: rgba(255, 255, 255, 0.05);
  --card-glass-hover: rgba(255, 255, 255, 0.09);
  --glass-blur: blur(12px);
  --glass-border: 1px solid rgba(255, 255, 255, 0.1);
  --glass-border-hover: 1px solid rgba(108, 92, 231, 0.4);
  
  /* Cores Principais */
  --primary: #6C5CE7;
  --primary-glow: rgba(108, 92, 231, 0.35);
  --secondary: #00CEC9;
  --secondary-glow: rgba(0, 206, 201, 0.35);
  --whatsapp-color: #25D366;
  --whatsapp-hover: #1EBE57;

  /* Tipografia */
  --text-main: #FFFFFF;
  --text-muted: #A0A0B0;
  --text-dark: #0A0A1A;

  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, #6C5CE7 0%, #00CEC9 100%);
  --gradient-glow: linear-gradient(135deg, rgba(108, 92, 231, 0.4) 0%, rgba(0, 206, 201, 0.4) 100%);
  --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);

  /* Fontes */
  --font-heading: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transições & Animações */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Espaçamentos & Layout */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --container-max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. CLASSES UTILITÁRIAS PARA ESCALABILIDADE DO LAYOUT
   -------------------------------------------------------------------------- */

/* Container Principal */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Padding Padrão de Seções */
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

/* Grids Responsivos Recicláveis */
.grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

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

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

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

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

/* Texto com Gradiente de Alta Conversão */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Cabeçalho de Seção Reutilizável */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.section-header .tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(108, 92, 231, 0.15);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: var(--radius-full);
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  .section-header p {
    font-size: 1rem;
  }
}

/* --------------------------------------------------------------------------
   4. CARDS EM GLASSMORPHISM (ESTILO ZENITY DARK MODERNO)
   -------------------------------------------------------------------------- */
.glass-card {
  background: var(--card-glass);
  background-image: var(--gradient-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

/* Micro-interação Hover nos Cards */
.glass-card:hover {
  transform: translateY(-6px);
  background: var(--card-glass-hover);
  border: var(--glass-border-hover);
  box-shadow: 0 16px 40px rgba(108, 92, 231, 0.25);
}

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

/* --------------------------------------------------------------------------
   5. BOTÕES DE AÇÃO E CTAS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
}

/* Botão Primário (Roxo/Gradiente) */
.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-main);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 206, 201, 0.4);
  opacity: 0.95;
}

/* Botão Secundário (Glassmorphism / Outline) */
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
  backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* Botão do WhatsApp Especial */
.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  font-weight: 700;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* --------------------------------------------------------------------------
   6. HEADER & NAVEGAÇÃO FIXA (NAVBAR)
   -------------------------------------------------------------------------- */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-normal);
  background: rgba(10, 10, 26, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-fixed.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 26, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-normal);
}

.nav-logo:hover img {
  filter: drop-shadow(0 0 8px var(--primary));
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

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

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

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

/* Hambúrguer Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 3px;
  transition: var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transition: var(--transition-slow);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 1050;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .nav-actions .btn-whatsapp span {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   7. HERO SECTION FULLSCREEN COM VÍDEO BACK BACKGROUND
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}

/* Vídeo Background em Tela Cheia (Logo Scene.11) */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  background: var(--bg-dark);
}

.hero-video-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--bg-dark);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Canvas de Animação de Backup do Vídeo se o mp4 não carregar */
.hero-video-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Overlay Escuro com Gradiente para Legibilidade Total */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 10, 26, 0.6) 0%, rgba(10, 10, 26, 0.92) 100%);
  z-index: 2;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  backdrop-filter: var(--glass-blur);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-stats {
    gap: 20px;
  }
  .stat-number {
    font-size: 1.75rem;
  }
}

/* --------------------------------------------------------------------------
   8. MARQUEE / SLIDER DE CLIENTES (IDA E VOLTA REVERSÍVEL - SMOOTH BOUNCE)
   -------------------------------------------------------------------------- */
.marquee-section {
  background: #FFFFFF;
  padding: 36px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.marquee-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 0 24px;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: marquee-bounce 32s ease-in-out infinite alternate;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.client-logo {
  height: 48px;
  width: auto;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: var(--transition-normal);
  flex-shrink: 0;
  object-fit: contain;
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes marquee-bounce {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--marquee-scroll, -80%));
  }
}

@media (max-width: 768px) {
  .marquee-section {
    padding: 24px 0;
  }
  
  .marquee-track {
    gap: 30px;
    animation-duration: 25s;
  }

  .client-logo {
    height: 38px;
  }
}

/* --------------------------------------------------------------------------
   9. SOBRE NÓS & SERVIÇOS (GRID 2x2 GLASSMORPHISM)
   -------------------------------------------------------------------------- */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-card .card-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  opacity: 0.8;
}

.service-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(108, 92, 231, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 20px;
  border: 1px solid rgba(108, 92, 231, 0.3);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--secondary);
  margin-top: auto;
}

.service-card:hover .card-link {
  gap: 12px;
  color: var(--text-main);
}

/* --------------------------------------------------------------------------
   10. SEÇÃO FAQ ACCORDION (1 ITEM POR VEZ)
   -------------------------------------------------------------------------- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card-glass);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item.active {
  background: var(--card-glass-hover);
  border-color: rgba(108, 92, 231, 0.4);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.15);
}

.faq-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: #FFFFFF;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-body {
  max-height: 300px;
  padding: 0 24px 24px 24px;
}

.faq-body p {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. BANNER DE CTA (DIAGNOSTICO GRATUITO)
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.25) 0%, rgba(0, 206, 201, 0.25) 100%);
  border: 1px solid rgba(108, 92, 231, 0.4);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: var(--secondary);
  filter: blur(140px);
  opacity: 0.3;
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 32px auto;
}

/* Responsividade Mobile para Botões e Banner de CTA */
@media (max-width: 768px) {
  .btn {
    padding: 14px 20px;
    font-size: 0.95rem;
    white-space: normal; /* Permite quebra harmoniosa do texto em dispositivos móveis */
    word-break: break-word;
    text-align: center;
    max-width: 100%;
    line-height: 1.35;
  }

  .btn svg {
    flex-shrink: 0; /* Previne distorção do ícone ao quebrar linha */
  }

  .cta-banner {
    padding: 36px 20px;
  }

  .cta-banner h2 {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .cta-banner p {
    font-size: 0.975rem;
    margin-bottom: 24px;
  }

  .cta-banner .btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
  }

  .contact-form .btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .cta-banner {
    padding: 28px 16px;
    border-radius: var(--radius-md);
  }

  .cta-banner h2 {
    font-size: 1.45rem;
  }
}

/* --------------------------------------------------------------------------
   12. FORMULÁRIO DE CONTATO FUNCIONAL (FORMSPREE INTEGRATION)
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

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

.contact-info {
  min-width: 0;
  max-width: 100%;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  min-width: 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  max-width: 100%;
}

.info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(108, 92, 231, 0.15);
  border: 1px solid rgba(108, 92, 231, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.25rem;
}

.info-text {
  min-width: 0;
  flex: 1;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.info-text h4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.info-text p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.info-text a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.975rem;
  transition: var(--transition-normal);
}

@media (max-width: 768px) {
  .glass-card {
    padding: 24px 18px;
  }

  .contact-info h3 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .contact-info p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .info-icon {
    width: 42px;
    height: 42px;
  }

  .info-text p {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .form-control {
    padding: 12px 14px;
    font-size: 0.925rem;
  }
}

@media (max-width: 480px) {
  .glass-card {
    padding: 18px 14px;
  }

  .contact-info h3 {
    font-size: 1.4rem;
  }

  .info-item {
    gap: 12px;
  }

  .info-icon {
    width: 38px;
    height: 38px;
  }

  .info-text p {
    font-size: 0.875rem;
  }

  .form-control {
    padding: 10px 12px;
    font-size: 0.875rem;
  }
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(108, 92, 231, 0.25);
}

select.form-control option {
  background-color: var(--bg-dark);
  color: var(--text-main);
}

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

/* Feedback do Formulário Dinâmico */
.form-feedback {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 10px;
}

.form-feedback.success {
  display: flex;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
}

.form-feedback.error {
  display: flex;
  background: rgba(235, 77, 75, 0.15);
  border: 1px solid rgba(235, 77, 75, 0.4);
  color: #EB4D4B;
}

/* --------------------------------------------------------------------------
   13. ESTILOS DEDICADOS À PÁGINA DO PODCAST (podcast.html)
   -------------------------------------------------------------------------- */
.podcast-badge {
  background: rgba(255, 107, 107, 0.15);
  border: 1px solid rgba(255, 107, 107, 0.4);
  color: #FF6B6B;
}

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

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

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

.podcast-topic-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
}

.podcast-topic-card .topic-number {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary);
  background: rgba(0, 206, 201, 0.1);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.podcast-player-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(108, 92, 231, 0.12) 100%);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.podcast-player-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.podcast-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--primary-glow);
}

.audio-player-wrapper {
  margin-top: 24px;
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

audio {
  width: 100%;
  outline: none;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   15. ÍCONES PNG CUSTOMIZADOS (SUBSTITUINDO EMOJIS)
   -------------------------------------------------------------------------- */
.custom-icon-png {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  /* Transforma os ícones pretos originais na cor azul-turquesa (#00CEC9) em harmonia com o tema */
  filter: brightness(0) saturate(100%) invert(68%) sepia(87%) saturate(1478%) hue-rotate(130deg) brightness(101%) contrast(101%);
  transition: var(--transition-normal);
}

.custom-icon-png:hover {
  transform: scale(1.15);
  filter: brightness(0) saturate(100%) invert(85%) sepia(90%) saturate(2000%) hue-rotate(130deg) brightness(110%) contrast(105%);
}

/* Tamanho customizado nos cards de contato da seção de informações */
.info-icon .custom-icon-png {
  width: 24px;
  height: 24px;
  margin-right: 0;
}

.footer {
  background: #060612;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 80px;
  padding-bottom: 40px;
}

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

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

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

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-main);
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--secondary);
  margin-top: 8px;
  border-radius: var(--radius-full);
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-col p a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

.social-btn:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px var(--primary-glow);
}

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

/* ==========================================================================
   FIM DO ESTILO CSS (style.css)
   ========================================================================== */
