/* ==========================================================================
   DOMINA FOOD - UNIFIED DESIGN SYSTEM & TYPOGRAPHY HIERARCHY
   Featuring Bebas Neue + Poppins, standardized 75px section padding,
   strict heading hierarchy (H1 -> H2 -> H3), readable font sizes,
   and rich brand gradients.
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --color-petrol-dark: #0E4650;
  --color-petrol-deeper: #08292F;
  --color-petrol-deepest: #051C20;
  --color-petrol-light: #186877;
  --color-petrol-glow: #20879B;

  --color-orange: #F07C1D;
  --color-orange-hover: #D9650C;
  --color-orange-glow: rgba(240, 124, 29, 0.4);

  --color-yellow: #F2B705;
  --color-yellow-light: #FFF5D6;

  --color-red: #E03A2F;
  --color-red-light: #FEE2E2;

  --color-green: #10B981;
  --color-green-dark: #059669;
  --color-green-light: #D1FAE5;
  
  /* Gradients */
  --grad-petrol-hero: linear-gradient(135deg, #051C20 0%, #0E4650 50%, #155E6C 100%);
  --grad-petrol-card: linear-gradient(145deg, #0A363E 0%, #0E4650 100%);
  --grad-orange: linear-gradient(135deg, #F07C1D 0%, #E05D06 100%);
  --grad-light-section: linear-gradient(180deg, #F5F8F7 0%, #E9F1EF 100%);
  --grad-white-card: linear-gradient(180deg, #FFFFFF 0%, #F9FBFB 100%);
  --grad-gold-badge: linear-gradient(135deg, #F2B705 0%, #D49E00 100%);

  /* Text Colors */
  --text-dark: #0F172A;
  --text-body: #1E293B;
  --text-muted: #475569;
  --text-light: #F8FAFC;
  --text-white: #FFFFFF;

  /* Typography Families */
  --font-display: 'Bebas Neue', 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Global Section Spacing Standard */
  --section-padding: 75px 0;
  --header-margin-bottom: 48px;

  /* Radius & Elevation */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 14px rgba(14, 70, 80, 0.06);
  --shadow-md: 0 10px 30px rgba(14, 70, 80, 0.12);
  --shadow-lg: 0 20px 48px rgba(14, 70, 80, 0.18);
  --shadow-orange: 0 12px 32px rgba(240, 124, 29, 0.4);

  --max-width: 1240px;
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: #08292F;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   TYPOGRAPHY HIERARCHY & STANDARDS
   ========================================================================== */

/* H1: Unique page main hero title */
h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.8vw, 4.4rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text-white);
}

/* H2: Standard section titles */
h2, .section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 12px;
}

/* H3: Card titles and subsection headers */
h3, .card-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 10px;
}

/* Subtitle under H2 section headers */
.section-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  font-weight: 500;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Paragraphs & Lists: Minimum 1rem / 16px readability */
p {
  font-size: 1rem;
  line-height: 1.65;
}

.text-petrol { color: var(--color-petrol-dark); }
.text-orange { color: var(--color-orange); }
.text-yellow { color: var(--color-yellow); }
.text-green { color: var(--color-green-dark); }

/* Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--grad-orange);
  color: var(--text-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 34px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-orange);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(240, 124, 29, 0.55);
}

.btn-cta-lg {
  font-size: 1.15rem;
  padding: 20px 42px;
}

.btn-cta-pulse {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(240, 124, 29, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(240, 124, 29, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 124, 29, 0); }
}

/* Badges */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: rgba(240, 124, 29, 0.12);
  border: 1px solid rgba(240, 124, 29, 0.35);
  color: var(--color-orange);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  backdrop-filter: blur(6px);
}

.section-badge-dark {
  background: rgba(242, 183, 5, 0.15);
  border: 1px solid rgba(242, 183, 5, 0.4);
  color: var(--color-yellow);
}

/* Header Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 41, 47, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: var(--header-height);
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

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

.header-logo {
  height: 46px;
  width: auto;
}

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

.header-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.2s;
  position: relative;
}

.header-nav a:hover {
  color: var(--color-orange);
}

/* ==========================================================================
   SECTIONS: STANDARDIZED PADDING & LAYOUT RHYTHM (75px 0)
   ========================================================================== */

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(90deg, #072328 0%, #0E4650 35%, #2B3D38 60%, #683818 80%, #AF4F10 95%, #C25B12 100%);
  color: var(--text-white);
  padding: 75px 0 85px;
  overflow: hidden;
  border-bottom: 1px solid rgba(240, 124, 29, 0.25);
  scroll-margin-top: var(--header-height);
  transition: padding 0.4s ease;
}

/* Background gradiente direcional da Hero (Petróleo na esquerda -> Alaranjado na direita) */
.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 92% 40%, rgba(240, 124, 29, 0.42) 0%, rgba(240, 124, 29, 0.16) 45%, transparent 75%),
              radial-gradient(circle at 10% 70%, rgba(7, 35, 40, 0.5) 0%, transparent 60%);
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-main-content {
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: stretch;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 28px;
  line-height: 1.65;
}

/* ==========================================================================
   Grupo de Ações da Hero (Botões CTA WhatsApp + Play Vídeo)
   - Ambos os botões possuem largura (460px) e altura (66px) perfeitamente simétricas
   ========================================================================== */
.hero-actions-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 8px;
  width: 100%;
  max-width: 460px;
}

/* Dimensões e tipografia unificadas entre os dois botões principais da Hero */
.hero-actions-group .btn-cta,
.hero-actions-group .btn-hero-play-trigger {
  width: 100%;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 28px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.btn-hero-play-trigger {
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

.btn-hero-play-trigger:hover {
  background: rgba(240, 124, 29, 0.2);
  border-color: #F07C1D;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(240, 124, 29, 0.3);
}

.play-btn-circle-mini {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F07C1D;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(240, 124, 29, 0.6);
  flex-shrink: 0;
}

.hero-stats-box {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 18px;
}

.hero-stats-header-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-stats-header-total {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-stats-header-total strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #F07C1D;
}

.hero-stats-row {
  display: flex;
  gap: 24px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-yellow);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: #FFFFFF;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 0;
  padding-bottom: 0;
  line-height: 1.35;
  display: block;
}

/* Card de Mídia da Hero com Gatilho de Play */
.hero-media-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  height: 100%;
  min-height: 100%;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 25px rgba(240, 124, 29, 0.25);
  border-color: rgba(240, 124, 29, 0.5);
}

.hero-media-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.15) translateX(6%);
  transition: transform 0.6s ease;
}

.hero-media-card:hover .hero-media-image-wrapper img {
  transform: scale(1.18) translateX(6%);
}

.hero-media-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 41, 47, 0.2) 0%, rgba(8, 41, 47, 0.75) 100%);
}

.hero-media-play-center {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
  pointer-events: none;
}

.hero-play-pulse-ring {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(240, 124, 29, 0.7);
  animation: heroPlayPulse 2s infinite ease-out;
  pointer-events: none;
}

@keyframes heroPlayPulse {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translateX(-50%) scale(1.65);
    opacity: 0;
  }
}

.hero-play-button-big {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F07C1D 0%, #D66308 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(240, 124, 29, 0.5);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.hero-media-card:hover .hero-play-button-big {
  transform: scale(1.12);
  box-shadow: 0 12px 35px rgba(240, 124, 29, 0.75);
}

/* Selo 'Clique aqui e veja como funciona' sobre a foto da Hero */
.hero-play-label {
  background: rgba(8, 41, 47, 0.92);
  backdrop-filter: blur(8px);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  border: 1px solid rgba(240, 124, 29, 0.45);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.hero-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(8, 41, 47, 0.94);
  backdrop-filter: blur(16px);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(240, 124, 29, 0.35);
  z-index: 2;
}

/* Banner de Vídeo Horizontal da Hero (Modo Ativo) */
.hero-video-banner-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: heroVideoFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroVideoFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-video-banner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px;
}

.hero-video-banner-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #FFFFFF;
  font-family: var(--font-display);
}

.hero-live-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  animation: liveDotPulse 1.8s infinite;
  display: inline-block;
}

@keyframes liveDotPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.btn-close-hero-video {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}

.btn-close-hero-video:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.6);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.hero-video-banner-frame-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 640px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #000000;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(240, 124, 29, 0.35);
}

.hero-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* About / Metodologia Section */
.about-section {
  background: var(--grad-light-section);
  padding: var(--section-padding);
  color: var(--text-dark);
}

.about-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--header-margin-bottom);
}

.about-header h2 {
  color: var(--color-petrol-dark);
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.about-card {
  background: var(--grad-white-card);
  border: 1px solid rgba(14, 70, 80, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.about-card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(240, 124, 29, 0.12);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* Video Section & Carousel */
.video-section {
  position: relative;
  background: var(--color-petrol-dark);
  padding: var(--section-padding);
  color: #FFFFFF;
}

/* Cabeçalho centralizado */
.video-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--header-margin-bottom);
}

.video-header h2 {
  color: #FFFFFF;
}

/* Wrapper externo do vídeo / carrossel */
.video-single-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 420px;
  margin: 0 auto;
}

.video-carousel-wrapper {
  max-width: 1040px;
  margin: 0 auto;
}

/* Tabs */
.video-carousel-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.video-tab-btn {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}

.video-tab-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-color: rgba(240, 124, 29, 0.5);
  transform: translateY(-2px);
}

.video-tab-btn.active {
  background: var(--grad-orange);
  border-color: var(--color-orange);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(240, 124, 29, 0.4);
  transform: translateY(-2px);
}

.video-badge-pill {
  background: #FFFFFF;
  color: var(--color-orange-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Palco de exibição 3D e botões de navegação */
.video-carousel-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
  overflow: hidden;
  padding: 10px 0;
}

/* Setas Laterais de Navegação */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: rgba(8, 41, 47, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.carousel-arrow.prev-arrow {
  left: 0px;
}

.carousel-arrow.next-arrow {
  right: 0px;
}

.carousel-arrow:hover {
  background: var(--color-orange);
  border-color: var(--color-orange-light);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 0 25px rgba(240, 124, 29, 0.6);
}

/* Container de Slides (Perspectiva 3D) */
.video-slides-container {
  position: relative;
  width: 100%;
  max-width: 980px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

/* Estrutura base de cada Slide */
.video-slide {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.55s cubic-bezier(0.34, 1.25, 0.64, 1), opacity 0.45s ease, filter 0.45s ease;
  will-change: transform, opacity, filter;
}

/* Slide Ativo (Em Foco no Centro) */
.video-slide.active-slide {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1) translateZ(0);
  z-index: 10;
  filter: brightness(1) blur(0);
}

/* Slide Próximo (Prévia em 3D à Direita) */
.video-slide.next-slide {
  opacity: 0.55;
  visibility: visible;
  pointer-events: auto;
  cursor: pointer;
  transform: translateX(38%) scale(0.8) rotateY(-10deg) translateZ(-60px);
  z-index: 4;
  filter: brightness(0.7) blur(0.5px);
}

.video-slide.next-slide:hover {
  opacity: 0.85;
  filter: brightness(0.9) blur(0);
  transform: translateX(35%) scale(0.83) rotateY(-5deg) translateZ(-30px);
}

/* Prev Slide (Partially Visible on Left) */
.video-slide.prev-slide {
  opacity: 0.55;
  visibility: visible;
  pointer-events: auto;
  cursor: pointer;
  transform: translateX(-38%) scale(0.8) rotateY(10deg) translateZ(-60px);
  z-index: 4;
  filter: brightness(0.7) blur(0.5px);
}

.video-slide.prev-slide:hover {
  opacity: 0.85;
  filter: brightness(0.9) blur(0);
  transform: translateX(-35%) scale(0.83) rotateY(5deg) translateZ(-30px);
}

/* Video Card Formatting */
.video-card {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.video-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 70, 80, 0.85);
  border: 1px solid rgba(240, 124, 29, 0.4);
  color: var(--color-yellow);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Mobile Format (9:16 Shorts) */
.video-card.mobile-format {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-card.mobile-format .video-thumbnail-wrapper,
.video-card.mobile-format .video-player-wrapper {
  width: 100%;
  max-width: 292px;
  aspect-ratio: 9 / 16;
  height: auto;
  max-height: 520px;
  margin: 0 auto;
  border-radius: 24px;
  border: 2px solid rgba(240, 124, 29, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

/* Desktop Format (16:9 Widescreen) */
.video-card.desktop-format {
  max-width: 860px;
}

.video-card.desktop-format .video-thumbnail-wrapper,
.video-card.desktop-format .video-player-wrapper {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(240, 124, 29, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.video-thumbnail-wrapper {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--grad-petrol-hero);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumbnail-logo {
  max-width: 60%;
  max-height: 50%;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
  position: absolute;
}

.video-thumbnail-wrapper:hover .video-thumbnail-logo {
  transform: scale(1.06);
}

.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 28, 32, 0.25) 0%, rgba(5, 28, 32, 0.8) 100%);
}

.play-button-container {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 2;
}

.play-button {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-full);
  background: var(--grad-orange);
  box-shadow: 0 0 35px rgba(240, 124, 29, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.video-thumbnail-wrapper:hover .play-button {
  transform: scale(1.12);
  box-shadow: 0 0 45px rgba(240, 124, 29, 0.9);
}

.play-text {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(8, 41, 47, 0.88);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.25);
  text-align: center;
}

.video-player-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.close-video-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s;
}

.close-video-btn:hover {
  background-color: var(--color-orange);
}

.video-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Carousel Dots */
.video-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.dot-btn {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-btn:hover {
  background: rgba(240, 124, 29, 0.6);
}

.dot-btn.active {
  width: 32px;
  background: var(--color-orange);
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(240, 124, 29, 0.7);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .carousel-arrow.prev-arrow { left: 5px; }
  .carousel-arrow.next-arrow { right: 5px; }
}

@media (max-width: 600px) {
  .carousel-arrow {
    width: 40px;
    height: 40px;
    z-index: 25;
  }
  .carousel-arrow.prev-arrow { left: 4px; }
  .carousel-arrow.next-arrow { right: 4px; }
  .video-card.mobile-format {
    max-width: 270px;
  }
  .video-card.mobile-format .video-thumbnail-wrapper,
  .video-card.mobile-format .video-player-wrapper {
    max-width: 250px;
  }
  .video-carousel-stage {
    min-height: 470px;
  }
  .video-slides-container {
    min-height: 450px;
  }
  .video-slide.next-slide {
    transform: translateX(42%) scale(0.75) rotateY(-6deg) translateZ(-30px);
    opacity: 0.25;
  }
  .video-slide.prev-slide {
    transform: translateX(-42%) scale(0.75) rotateY(6deg) translateZ(-30px);
    opacity: 0.25;
  }
}

/* Real Results Section (Light Background) */
.results-section {
  background: var(--grad-light-section);
  padding: var(--section-padding);
  color: var(--text-dark);
  border-top: 1px solid rgba(14, 70, 80, 0.1);
  border-bottom: 1px solid rgba(14, 70, 80, 0.1);
}

.results-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--header-margin-bottom);
}

.results-header h2 {
  color: var(--color-petrol-dark);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.result-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(14, 70, 80, 0.06);
  transition: transform 0.25s ease;
}

.result-card:hover {
  transform: translateY(-5px);
}

.result-number {
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 1;
  margin-bottom: 8px;
}

.result-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.result-desc {
  font-size: 0.925rem;
  color: #475569;
  font-weight: 500;
}

/* Solutions / Features Section (Dark Petrol Background) */
.solutions-section {
  background: linear-gradient(135deg, #051C20 0%, #0E4650 50%, #08292F 100%);
  color: white;
  padding: var(--section-padding);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.solutions-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--header-margin-bottom);
}

.solutions-header h2 {
  color: #FFFFFF;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 28px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.solution-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(242, 183, 5, 0.15);
  border: 1px solid rgba(242, 183, 5, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.solution-card h3 {
  color: #FFFFFF;
}

/* Comparison Section */
.comparison-section {
  background: #F1F5F4;
  padding: var(--section-padding);
  border-bottom: 1px solid rgba(14, 70, 80, 0.08);
}

.comparison-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--header-margin-bottom);
}

.comparison-header h2 {
  color: var(--color-petrol-dark);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}

.comp-col {
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.comp-col.with {
  border: 2px solid var(--color-green);
  background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
}

.comp-col.without {
  border: 1px solid rgba(224, 58, 47, 0.3);
  background: linear-gradient(180deg, #FFFFFF 0%, #FEF2F2 100%);
}

.comp-header {
  font-family: var(--font-display);
  font-size: 2.1rem;
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.comp-col.with .comp-header { color: var(--color-green-dark); }
.comp-col.without .comp-header { color: var(--color-red); }

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.975rem;
}

.comp-image-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 210px;
}

.comp-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Infrastructure Section */
.infra-section {
  background: var(--grad-white-card);
  padding: var(--section-padding);
}

.infra-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--header-margin-bottom);
}

.infra-header h2 {
  color: var(--color-petrol-dark);
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 36px;
}

.infra-card {
  background: var(--grad-light-section);
  border: 1px solid rgba(14, 70, 80, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.infra-card h3 {
  color: var(--color-petrol-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.infra-card-img {
  height: 170px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.infra-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.infra-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.infra-trust-banner {
  background: var(--grad-petrol-card);
  border: 1px solid rgba(240, 124, 29, 0.4);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  font-weight: 700;
  color: white;
  font-size: 1.05rem;
}

/* ==========================================================================
   Target Operations Section (Segmentos Atendidos)
   - Layout compacto com padding reduzido (42px 0 52px) para melhor fluidez vertical
   - Ícone da coroa e cabeçalho elevados
   ========================================================================== */
.target-section {
  background: var(--grad-light-section);
  padding: 42px 0 52px;
}

.target-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 24px;
}

/* Ícone da Coroa ('d') com altura proporcional de 62px e margens compactas */
.target-crown-icon {
  height: 62px;
  width: auto;
  object-fit: contain;
  margin-bottom: 6px;
  display: block;
}

.target-header .section-badge {
  margin-bottom: 12px;
}

.target-header h2 {
  color: var(--color-petrol-dark);
  margin-top: 4px;
  margin-bottom: 10px;
}

.target-header .section-subtitle {
  margin-bottom: 0;
}

.target-pills-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.target-pill {
  background: white;
  border: 1px solid rgba(14, 70, 80, 0.15);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-petrol-dark);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.target-pill:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  transform: translateY(-2px);
}

/* Workflow Section */
.workflow-section {
  background: var(--grad-white-card);
  padding: var(--section-padding);
}

.workflow-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--header-margin-bottom);
}

.workflow-header h2 {
  color: var(--color-petrol-dark);
}

.workflow-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.workflow-step-card {
  background: var(--grad-light-section);
  border: 1px solid rgba(14, 70, 80, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.2s ease;
}

.workflow-step-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-orange);
}

.workflow-step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.workflow-step-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-petrol-dark);
}

.workflow-step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Pricing Section */
.pricing-section {
  background: var(--grad-light-section);
  padding: var(--section-padding);
}

.pricing-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--header-margin-bottom);
}

.pricing-header h2 {
  color: var(--color-petrol-dark);
}

.pricing-card-main {
  max-width: 960px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--radius-xl);
  border: 2px solid var(--color-orange);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  overflow: hidden;
}

.price-side {
  background: var(--grad-petrol-hero);
  color: white;
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-yellow);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 5rem;
  color: white;
  line-height: 0.9;
}

.price-period {
  font-size: 1rem;
  color: white;
  margin-top: 6px;
  margin-bottom: 24px;
}

.pricing-features-side {
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--grad-white-card);
}

.pricing-features-side h3 {
  color: var(--color-petrol-dark);
  margin-bottom: 20px;
}

.pricing-features-side ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features-side li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Final CTA Section */
.final-cta-section {
  position: relative;
  background: var(--grad-petrol-hero);
  color: white;
  padding: 90px 0;
  text-align: center;
  border-top: 1px solid rgba(240, 124, 29, 0.3);
}

.final-cta-box {
  max-width: 840px;
  margin: 0 auto;
}

.final-cta-box h2 {
  font-size: clamp(2.6rem, 4.2vw, 3.8rem);
  color: white;
  margin-bottom: 16px;
}

.final-cta-box p {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 32px;
  line-height: 1.65;
}

/* Footer */
.site-footer {
  background: var(--color-petrol-deepest);
  color: white;
  padding: 65px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-links-col h3 {
  font-size: 1.4rem;
  color: var(--color-yellow);
  margin-bottom: 16px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: white;
  transition: color 0.2s;
}

.footer-links-col a:hover {
  color: var(--color-orange);
}

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

/* Floating WhatsApp Button (Orange) */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: var(--grad-orange);
  color: white;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 32px rgba(240, 124, 29, 0.6);
  transition: transform 0.25s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float:hover {
  transform: scale(1.12);
}

.whatsapp-float-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--color-red);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* Responsive Rules (Strictly scoped for mobile devices) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-media-card {
    height: 360px;
    min-height: 360px;
  }
  .pricing-card-main {
    grid-template-columns: 1fr;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  /* Site Header Mobile */
  .header-nav,
  .header-cta {
    display: none !important;
  }
  .site-header {
    padding: 12px 0;
  }
  .header-inner {
    justify-content: center;
    gap: 8px;
  }
  .header-logo {
    height: 52px;
  }

  /* Hero Section Mobile Polish - Centered Alignment & Top Banner strictly for mobile */
  .hero-section {
    padding: 36px 0 44px;
    text-align: center;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .hero-section .section-badge {
    margin: 0 auto 20px !important;
    display: inline-flex;
    justify-content: center;
  }

  /* Photo Banner at Top on Mobile */
  .hero-media-card {
    order: -1; /* Places Arê photo banner AT THE TOP on mobile! */
    width: 100%;
    height: 260px !important;
    min-height: 260px !important;
    max-height: 260px !important;
    border-radius: var(--radius-lg);
    margin: 0 0 8px 0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  }
  .hero-media-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: none;
  }
  .hero-media-play-center {
    top: 40%;
    gap: 8px;
  }
  .hero-play-button-big,
  .hero-play-pulse-ring {
    width: 58px;
    height: 58px;
  }
  .hero-play-button-big svg {
    width: 26px !important;
    height: 26px !important;
  }
  .hero-play-label {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    background: rgba(8, 41, 47, 0.94);
    border: 1px solid rgba(240, 124, 29, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
  .hero-badge-overlay {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 10px 12px;
    gap: 8px;
    background: rgba(8, 41, 47, 0.94);
    backdrop-filter: blur(12px);
    text-align: left;
  }
  .hero-badge-overlay p {
    font-size: 0.775rem !important;
    line-height: 1.35;
  }

  /* Hero Content Mobile */
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-content h1 {
    text-align: center;
    font-size: clamp(1.75rem, 6.2vw, 2.2rem);
    line-height: 1.18;
    margin: 0 auto 14px !important;
  }
  .hero-subtitle {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 auto 20px !important;
    max-width: 98%;
  }
  .hero-actions-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 350px;
    gap: 12px;
    margin: 0 auto;
  }
  .hero-actions-group .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  .btn-hero-play-trigger {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 700;
  }

  /* Hero Video Banner on Mobile */
  .hero-section.video-active {
    padding: 24px 0 32px;
  }
  .hero-video-banner-container {
    gap: 12px;
  }
  .hero-video-banner-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
  }
  .hero-video-banner-title {
    font-size: 0.825rem;
  }
  .btn-close-hero-video {
    padding: 6px 12px;
    font-size: 0.775rem;
    white-space: nowrap;
  }
  .hero-video-banner-frame-wrapper {
    border-radius: var(--radius-lg);
    aspect-ratio: 16 / 9;
  }

  /* Hide Stats Box strictly on Mobile devices */
  .hero-stats-box {
    display: none !important;
  }

  /* Sections & Workflow Mobile */
  .target-section {
    padding: 36px 0 42px;
  }
  .target-crown-icon {
    height: 52px;
  }
  .target-header {
    margin: 0 auto 20px;
  }
  .target-pills-grid {
    gap: 10px;
  }
  .target-pill {
    padding: 11px 20px;
    font-size: 0.95rem;
  }

  .workflow-steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Footer Mobile */
  .footer-grid {
    text-align: center;
  }
  .footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-links-col ul {
    align-items: center;
  }
  .footer-links-col a {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
  }
}

/* ==========================================================================
   SYSTEM SHOWCASE (PRINTS DO SISTEMA) SECTION STYLES
   ========================================================================== */
.system-showcase-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, #051C20 0%, #0E4650 50%, #08292F 100%);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.system-showcase-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(240, 124, 29, 0.12) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.system-showcase-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.system-showcase-header h2 {
  color: var(--text-white);
  margin-top: 12px;
}

.system-showcase-header .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

/* TABS CONTAINER */
.system-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.system-tabs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(8, 41, 47, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  justify-content: center;
}

.system-tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.system-tab-btn:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
}

.system-tab-btn.active {
  background: var(--grad-orange);
  color: var(--text-white);
  box-shadow: 0 8px 24px rgba(240, 124, 29, 0.35);
  border-color: rgba(255, 255, 255, 0.3);
}

.system-tab-icon {
  display: flex;
  align-items: center;
}

.system-tab-badge {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.25);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* TAB INTRO CARD */
.system-tab-intro-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.system-module-badge {
  display: inline-block;
  background: rgba(242, 183, 5, 0.18);
  color: #F2B705;
  border: 1px solid rgba(242, 183, 5, 0.3);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.system-tab-intro-text h3 {
  color: var(--text-white);
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.system-tab-intro-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

/* FEATURED GRID */
.system-featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .system-featured-grid {
    grid-template-columns: 1fr;
  }
}

/* BROWSER MOCKUP */
.system-browser-mockup {
  background: #08292F;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.system-browser-header {
  background: #051C20;
  padding: 10px 18px;
  height: 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.system-browser-dots {
  display: flex;
  gap: 8px;
}

.system-browser-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot-red { background-color: #FF5F56; }
.dot-yellow { background-color: #FFBD2E; }
.dot-green { background-color: #27C93F; }

.system-browser-address {
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  font-family: monospace;
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.system-browser-action {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #10B981;
  font-weight: 600;
}

.live-status-dot {
  width: 7px;
  height: 7px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
}

.system-browser-body {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.system-featured-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.system-browser-body:hover .system-featured-img {
  transform: scale(1.02);
}

.system-image-overlay-prompt {
  position: absolute;
  inset: 0;
  background: rgba(8, 41, 47, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  color: var(--text-white);
  font-weight: 600;
}

.system-browser-body:hover .system-image-overlay-prompt {
  opacity: 1;
}

.system-img-caption-bar {
  background: #051C20;
  padding: 10px 18px;
  height: 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.caption-tag {
  margin-left: auto;
  font-size: 0.72rem;
  background: rgba(240, 124, 29, 0.2);
  color: #F07C1D;
  border: 1px solid rgba(240, 124, 29, 0.4);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

/* DIDACTIC CARD */
.system-didactic-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.didactic-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.didactic-icon {
  color: #F2B705;
}

.didactic-header h4 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
}

.didactic-points-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.didactic-point-item {
  display: flex;
  gap: 14px;
  background: rgba(0, 0, 0, 0.2);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s ease;
}

.didactic-point-item:hover {
  border-color: rgba(240, 124, 29, 0.4);
}

.point-number {
  width: 28px;
  height: 28px;
  background: var(--color-orange);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.point-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.point-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.point-title-row h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
}

.point-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.point-content p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  margin: 0;
}

.didactic-footer-note {
  margin-top: 20px;
  background: rgba(242, 183, 5, 0.12);
  border: 1px solid rgba(242, 183, 5, 0.25);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: #FFF;
  font-size: 0.88rem;
}

/* SECONDARY GALLERY */
.system-secondary-gallery {
  margin-top: 36px;
}

.gallery-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 124, 29, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.gallery-card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 170px;
  background: #051C20;
}

.gallery-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

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

.gallery-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(8, 41, 47, 0.8);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-card-hover {
  opacity: 1;
}

.gallery-card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gallery-card-tag {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(240, 124, 29, 0.15);
  color: #F07C1D;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.gallery-card-content h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
}

.gallery-card-content p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}

/* LIGHTBOX MODAL STYLES */
.system-lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 28, 32, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.25s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.system-lightbox-modal {
  background: #08292F;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.system-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 20;
}

.system-lightbox-close:hover {
  background: var(--color-orange);
  transform: scale(1.1);
}

.system-lightbox-header {
  padding: 20px 24px;
  background: #051C20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--color-orange);
  color: #FFF;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}

.system-lightbox-header h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
}

.system-lightbox-body {
  padding: 20px;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #031316;
}

.system-lightbox-body img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.system-lightbox-footer {
  padding: 16px 24px;
  background: #051C20;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: calc(100% - 48px);
  max-width: 420px;
  background: rgba(5, 28, 32, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: cookieSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@keyframes cookieSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-consent-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-icon-wrapper {
  width: 32px;
  height: 32px;
  background: rgba(240, 124, 29, 0.2);
  border: 1px solid rgba(240, 124, 29, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F07C1D;
  flex-shrink: 0;
}

.cookie-title {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-white);
  flex: 1;
}

.cookie-close-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.cookie-close-btn:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.1);
}

.cookie-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  margin: 0;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.cookie-btn-primary {
  background: var(--grad-orange);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 14px rgba(240, 124, 29, 0.35);
}

.cookie-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240, 124, 29, 0.5);
}

.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

@media (max-width: 576px) {
  .cookie-consent-banner {
    left: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 16px;
  }
  
  .cookie-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}