/**
 * reconhece.vc - Main Theme Stylesheet
 *
 * Modern, responsive style system with CSS Variables,
 * smooth transitions, elegant typography, and sleek aesthetic.
 */

/* ==========================================================================
   0. Design Tokens & Variables
   ========================================================================== */
:root {
  /* Color Palette */
  --color-primary: #56215c; /* Deep Purple (Cor Primária) */
  --color-primary-hover: #3d1442;

  --color-secondary-yellow: #fbb334; /* Vivid Yellow (Cor Secundária) */
  --color-secondary-yellow-hover: #e59e22;

  --color-secondary-purple-light: #e3cbdf; /* Soft Lavender (Cor Secundária) */

  --color-tertiary-orange: #e8442d; /* Vibrant Orange (Cor Terciária) */
  --color-tertiary-orange-hover: #cf331d;

  --color-graphite: #4a4a4a; /* Graphite (Cor de Apoio) */
  --color-white: #ffffff; /* White (Cor de Apoio) */
  --color-graphite-text: #2b2b2b;

  --color-header-page-title: #e0c9dd;

  /* Semantic Colors */
  --color-text-main: var(--color-graphite);
  --color-text-heading: var(--color-primary);
  --color-bg-body: #f9f5f8; /* Soft tint blending with light lavender */
  --color-bg-card: var(--color-white);

  /* Layout & Spacing */
  --font-primary: "Outfit", "Inter", system-ui, -apple-system, sans-serif;
  --max-width-content: 1200px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:
    0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 10px 25px -5px rgba(86, 33, 92, 0.3);

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Preference */
@media (prefers-color-scheme: dark) {
  :root {
    --color-bg-body: #ffffff; /* Dark purple-tinted slate */
    --color-bg-card: #251b29; /* Medium dark purple-tinted card */
    --color-text-main: #dfd8e1;
    --color-text-heading: #f9f5f8;
    --color-graphite: #e2e8f0;
  }
}

/* ==========================================================================
   1. Base & Reset Styles
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-body);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: var(--transition-smooth);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text-heading);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5em;
}

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

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

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

/* ==========================================================================
   2. Typography & Custom Utilities
   ========================================================================== */
.gradient-text {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-tertiary-orange)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-button {
  display: inline-block;
  padding: 12px 28px;
  background: var(--color-tertiary-orange);
  color: var(--color-white);
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.glow-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(86, 33, 92, 0.4);
  color: var(--color-white);
}

/* ==========================================================================
   3. Header Navigation Styles
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  background: rgba(86, 33, 92, 0.8);
}

.site-header.scrolled {
  padding: 12px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.site-header-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Custom Logo Styling */
.site-logo img {
  max-width: 190px;
  height: auto;
  display: block;
}

/* Brand Logo with Crown */
.custom-brand-logo {
  display: flex;
  align-items: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.5px;
}

.custom-brand-logo:hover {
  color: var(--color-white);
  opacity: 0.9;
}

.logo-highlight {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.logo-crown {
  position: absolute;
  top: -12px;
  right: -8px;
  width: 18px;
  height: 18px;
  transform: rotate(15deg);
  animation: crownFloat 3s ease-in-out infinite alternate;
}

@keyframes crownFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-3px);
  }
}

/* Navigation List */
.primary-navigation {
  display: flex;
  align-items: center;
}

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

.menu-item {
  position: relative;
}

.menu-item a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  font-size: 1.2rem;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu-item a:hover {
  color: var(--color-white);
}

.menu-item.current-menu-item a,
.menu-item.current-menu-parent a,
.menu-item.current-menu-ancestor a,
.menu-item.current_page_item a,
.menu-item.current_page_parent a,
.menu-item.current_page_ancestor a,
.menu-item.active a {
  color: var(--color-white);
  font-weight: 500;
}

/* Solutions Mega Menu Trigger */
.megamenu-trigger .chevron-icon {
  transition: var(--transition-smooth);
}

.has-megamenu:hover .megamenu-trigger .chevron-icon {
  transform: rotate(180deg);
}

/* Mega Menu Dropdown */
.megamenu-dropdown {
  position: absolute;
  top: calc(100% + 11px);
  right: -20px;
  width: 480px;
  background: rgba(86, 33, 92, 0.8);
  border-radius: 24px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  box-shadow:
    var(--shadow-lg),
    0 20px 40px rgba(0, 0, 0, 0.3);
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.has-megamenu:hover .megamenu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.megamenu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.megamenu-card {
  padding: 16px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: flex-start;
}

.megamenu-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.megamenu-card h3 {
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.megamenu-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* ==========================================================================
   4. Hero Banner Section
   ========================================================================== */
.hero-banner {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
  padding-bottom: 30px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-color: var(--color-primary);
}
/* 
@media (min-width: 1440px) {
    .hero-banner {
        background-size: contain;
    }
} */

.hero-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
  z-index: 10;
}

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

.hero-headline {
  color: var(--color-white);
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-subheadline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-cta-btn {
  border-radius: 50px;
  padding: 16px 36px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Floating Badges Container */
.hero-badges-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: flex-end;
  perspective: 1000px;
  margin-top: 100px; /* Pushes the badge stack a bit down above the notebook */
}

.badge-cascade-item {
  opacity: 0;
  transform: translateY(120px) scale(0.8) rotate(-4deg);
  animation: entranceNotificationPop 0.8s cubic-bezier(0.25, 1.1, 0.5, 1.1)
    forwards;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

/* Badge sequential notification receipt delays (real-time celebration pop-in) */
.badge-cascade-item.delay-1 {
  animation-delay: 0.3s;
}
.badge-cascade-item.delay-2 {
  animation-delay: 0.7s;
}
.badge-cascade-item.delay-3 {
  animation-delay: 1.1s;
}
.badge-cascade-item.delay-4 {
  animation-delay: 1.5s;
}
.badge-cascade-item.delay-5 {
  animation-delay: 1.9s;
}
.badge-cascade-item.delay-6 {
  animation-delay: 2.3s;
}

/* Green credits shifted to the left */
.badge-cascade-item:nth-child(odd) {
  padding-right: 60px;
}

/* Purple/red rewards shifted to the right */
.badge-cascade-item:nth-child(even) {
  padding-right: 15px;
}

.badge-pill {
  padding: 6px 20px 6px 8px;
  border-radius: 50px;
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

/* Premium shine sweep overlay (triggers right when each badge notification pops in) */
.badge-pill::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 1;
}

/* Sychronize shine sweep with notification pops */
.badge-cascade-item.delay-1 .badge-pill::before {
  animation: shineSweep 1.2s ease-in-out forwards;
  animation-delay: 0.9s;
}
.badge-cascade-item.delay-2 .badge-pill::before {
  animation: shineSweep 1.2s ease-in-out forwards;
  animation-delay: 1.3s;
}
.badge-cascade-item.delay-3 .badge-pill::before {
  animation: shineSweep 1.2s ease-in-out forwards;
  animation-delay: 1.7s;
}
.badge-cascade-item.delay-4 .badge-pill::before {
  animation: shineSweep 1.2s ease-in-out forwards;
  animation-delay: 2.1s;
}
.badge-cascade-item.delay-5 .badge-pill::before {
  animation: shineSweep 1.2s ease-in-out forwards;
  animation-delay: 2.5s;
}
.badge-cascade-item.delay-6 .badge-pill::before {
  animation: shineSweep 1.2s ease-in-out forwards;
  animation-delay: 2.9s;
}

.badge-pill:hover {
  transform: scale(1.06) translateY(-4px) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.35);
}

.pill-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pill-icon {
  width: 16px;
  height: 16px;
  color: var(--color-white);
}

i.pill-icon {
  font-size: 16px;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.pill-credit {
  background: rgba(34, 197, 94, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.pill-credit .pill-icon-wrapper {
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}

.pill-reward {
  background: rgba(232, 68, 45, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.pill-reward .pill-icon-wrapper {
  background: #e8442d;
  box-shadow: 0 0 12px rgba(232, 68, 45, 0.4);
}

.pill-credit strong {
  font-weight: 800;
  color: #fff;
}

/* ==========================================================================
   5. Dynamic Keyframe Animations
   ========================================================================== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-drift {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInDrift 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Delays */
.delay-1 {
  animation-delay: 0.15s;
}
.delay-2 {
  animation-delay: 0.3s;
}
.delay-3 {
  animation-delay: 0.45s;
}
.delay-4 {
  animation-delay: 0.6s;
}
.delay-5 {
  animation-delay: 0.75s;
}
.delay-6 {
  animation-delay: 0.9s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDrift {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Floating activity effect for badges */
.badge-cascade-item:nth-child(odd) .badge-pill {
  animation: driftOne 6s ease-in-out infinite alternate;
}

.badge-cascade-item:nth-child(even) .badge-pill {
  animation: driftTwo 7s ease-in-out infinite alternate;
}

.badge-cascade-item:nth-child(1) .badge-pill {
  animation-delay: 1s;
}
.badge-cascade-item:nth-child(2) .badge-pill {
  animation-delay: 1.3s;
}
.badge-cascade-item:nth-child(3) .badge-pill {
  animation-delay: 1.6s;
}
.badge-cascade-item:nth-child(4) .badge-pill {
  animation-delay: 1.9s;
}
.badge-cascade-item:nth-child(5) .badge-pill {
  animation-delay: 2.2s;
}
.badge-cascade-item:nth-child(6) .badge-pill {
  animation-delay: 2.5s;
}

@keyframes entranceNotificationPop {
  0% {
    opacity: 0;
    transform: translateY(120px) scale(0.7) rotate(-4deg);
    filter: blur(4px);
  }
  60% {
    opacity: 1;
    transform: translateY(-12px) scale(1.04) rotate(1deg);
    filter: blur(0);
  }
  85% {
    transform: translateY(3px) scale(0.98) rotate(-0.5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

@keyframes shineSweep {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

@keyframes driftOne {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes driftTwo {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(8px);
  }
}

/* ==========================================================================
   6. Responsive & Navigation Styles
   ========================================================================== */
.menu-toggle-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle-btn .bar {
  width: 25px;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

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

  .primary-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(86, 33, 92, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    padding: 100px 40px 40px;
    transition: var(--transition-smooth);
    z-index: 1050;
    display: block;
  }

  .primary-navigation.active {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .menu-item a {
    font-size: 1.15rem;
  }

  .megamenu-dropdown {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 12px 0 0 16px;
    background: none;
    border: none;
    display: none;
  }

  .megamenu-dropdown::after {
    display: none; /* Hide watermark on mobile */
  }

  .megamenu-dropdown.mobile-open {
    display: block !important;
  }

  .has-megamenu:hover .megamenu-dropdown {
    display: block;
  }

  .megamenu-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .megamenu-card {
    padding: 8px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 60px;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .hero-badges-wrapper {
    align-items: center;
    margin-top: 40px;
  }

  .badge-cascade-item {
    justify-content: center;
    padding-right: 0 !important;
  }

  .badge-cascade-item:nth-child(n + 4) {
    display: none !important;
  }

  /* Burger Menu Active Transformations */
  .menu-toggle-btn.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle-btn.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle-btn.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* ==========================================================================
   7. Seção: Nossos Números (Métricas)
   ========================================================================== */
.stats-section {
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-size: 115%;
  background-position: top center;
  background-repeat: repeat-y;
}

/* Floating Crown Watermarks in background */
.stats-crown-bg {
  position: absolute;
  color: rgba(86, 33, 92, 0.035);
  width: 280px;
  height: 280px;
  pointer-events: none;
  z-index: 1;
}

.crown-bg-left {
  top: 10%;
  left: 2%;
  transform: rotate(-15deg);
  animation: crownFloatLeft 10s ease-in-out infinite alternate;
}

.crown-bg-right {
  bottom: 10%;
  right: 2%;
  transform: rotate(15deg);
  animation: crownFloatRight 12s ease-in-out infinite alternate;
}

.crown-watermark-svg {
  width: 100%;
  height: 100%;
}

@keyframes crownFloatLeft {
  0% {
    transform: translateY(0) rotate(-15deg) scale(1);
  }
  100% {
    transform: translateY(-20px) rotate(-10deg) scale(1.05);
  }
}

@keyframes crownFloatRight {
  0% {
    transform: translateY(0) rotate(15deg) scale(1);
  }
  100% {
    transform: translateY(20px) rotate(20deg) scale(1.05);
  }
}

.stats-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

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

.stat-card {
  padding: 45px 30px;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  position: relative;
  z-index: 1;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  border: 2.5px solid var(--color-primary);
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(86, 33, 92, 0.02);
  z-index: -1;
  transition: var(--transition-smooth);
}

@property --glow-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.stat-card::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: conic-gradient(
    from var(--glow-angle),
    var(--color-primary),
    var(--color-secondary-yellow),
    var(--color-primary),
    var(--color-secondary-yellow),
    var(--color-primary)
  );
  z-index: -2;
  border-radius: 32px;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.stat-card:hover::after {
  opacity: 0.4;
  animation: spinGlowAngle 4s linear infinite;
}

@keyframes spinGlowAngle {
  0% {
    --glow-angle: 0deg;
  }
  100% {
    --glow-angle: 360deg;
  }
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.stat-card:hover::before {
  box-shadow: 0 20px 40px rgba(86, 33, 92, 0.08);
  border-color: var(--color-primary-hover);
}

.stat-number {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -2px;
  font-family: var(--font-primary);
  position: relative;
}

.stat-number::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%) translateY(15px) scale(0.8);
  width: 36px;
  height: 36px;
  background-image: url("../images/crown.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 10;
}

.stat-card:hover .stat-number::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.35;
  max-width: 240px;
  margin: 0 auto;
  font-family: var(--font-primary);
}

/* ==========================================================================
   8. Seção: Empresas Parceiras
   ========================================================================== */
.partners-section {
  background-color: var(--color-white);
  padding: 90px 0 0px;
  position: relative;
}

.partners-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.partners-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 60px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 100px 38px;
  max-width: 1150px;
  margin: 0 auto 50px;
}

.partner-logo {
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.partner-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.partner-logo:hover {
  transform: scale(1.08);
}

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

.logo-svg {
  width: 100%;
  height: 100%;
  max-height: 42px;
}

.partners-footer-section {
  background-color: var(--color-white);
  width: 100%;
  padding-bottom: 20px;
}

.partners-footer-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.partners-footer-section {
  background-color: var(--color-bg-body);
}

.partners-footer {
  margin-top: 0;
  padding-top: 50px;
}

.partners-footer-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
  font-family: var(--font-primary);
}

.isDesktop {
  display: block !important;
}

.isMobile {
  display: none;
}

/* ==========================================================================
   10. Seção: Showcase de Soluções (Plataforma, GO, Card)
   ========================================================================== */
.solutions-showcase {
  width: 100%;
}

.solution-row {
  padding: 50px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  /* overflow: hidden; */
}

.solution-row.go-row {
  padding: 50px 0;
}

.solution-row.card-row {
  padding: 50px 0;
}

.solution-row.gamificacao-row {
  padding: 50px 0;
}

.solution-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Alternating Alignment */
.solution-row.align-left {
  flex-direction: row;
}

.solution-row.align-right {
  flex-direction: row-reverse;
}

/* Background Colors & Theming */
.solution-row.bg-dark-purple {
  background-color: var(--color-primary);
}

.solution-row.bg-dark-purple .solution-title {
  color: var(--color-white);
}

.solution-row.bg-dark-purple .solution-desc {
  color: rgba(255, 255, 255, 0.85);
}

.solution-row.bg-light-grey {
  background-color: #f9f5f8;
}

.solution-row.bg-light-grey .solution-title,
.solution-row.bg-soft-lavender .solution-title {
  color: var(--color-primary);
}

/* .solution-row.bg-light-grey .solution-desc,
.solution-row.bg-soft-lavender .solution-desc {
  color: var(--color-graphite);
} */
.solution-row.go-row .solution-desc,
.solution-row.bg-soft-lavender .solution-desc {
  color: var(--color-primary-hover);
}

.solution-row.bg-soft-lavender {
  background-color: var(--color-secondary-purple-light);
}

/* Content Column Styles */
.solution-content {
  flex: 1;
  max-width: 520px;
}

.solution-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-family: var(--font-primary);
}

.gamificacao-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.gamificacao-content .solution-title {
  font-size: 2.2rem;
  text-align: center;
}

.gamificacao-content .solution-desc {
  text-align: center;
  color: var(--color-graphite-text);
  z-index: 20;
}

.solution-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 35px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.solution-btn {
  display: inline-block;
  padding: 12px 36px;
  background-color: var(--color-tertiary-orange);
  color: var(--color-white) !important;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  text-transform: none;
}

.solution-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(232, 68, 45, 0.5);
}

/* Media Column Styles */
.solution-media-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plataforma-row .solution-media-inner {
  position: relative;
  max-width: 100%;
  /* height: 440px; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -10px;
}

/* Colored Circular Backgrounds */
.solution-circle-bg {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition-smooth);
}

.bg-dark-purple .solution-circle-bg {
  background: rgba(255, 255, 255, 0.08);
}

.bg-light-grey .solution-circle-bg {
  background: var(--color-secondary-purple-light);
}

.bg-soft-lavender .solution-circle-bg {
  background: var(--color-primary);
}

/* Floating Crown Decorations */
.solution-crown-decor {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  width: 46px;
  height: 46px;
  color: #fbb334;
  z-index: 3;
  animation: crownFloatSolutions 3s ease-in-out infinite alternate;
}

.decor-crown-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

@keyframes crownFloatSolutions {
  0% {
    transform: translateX(-50%) translateY(0) rotate(-6deg);
  }
  100% {
    transform: translateX(-50%) translateY(-6px) rotate(6deg);
  }
}

/* Customized Crown Positions and Animations per Solution */
.plataforma-row .solution-crown-decor {
  top: 10px;
  left: 50%;
  animation: crownFloatPlataforma 3s ease-in-out infinite alternate;
}

@keyframes crownFloatPlataforma {
  0% {
    transform: translateX(-50%) translateY(0) rotate(-6deg);
  }
  100% {
    transform: translateX(-50%) translateY(-6px) rotate(6deg);
  }
}

.go-row .solution-crown-decor {
  top: 45px;
  left: 22%;
  animation: crownFloatGo 3.2s ease-in-out infinite alternate;
}

@keyframes crownFloatGo {
  0% {
    transform: translateY(0) rotate(-15deg);
  }
  100% {
    transform: translateY(-6px) rotate(-9deg);
  }
}

.card-row .solution-crown-decor {
  top: 145px;
  left: 12%;
  animation: crownFloatCard 2.8s ease-in-out infinite alternate;
}

@keyframes crownFloatCard {
  0% {
    transform: translateY(0) rotate(-25deg);
  }
  100% {
    transform: translateY(-6px) rotate(-18deg);
  }
}

/* Mockups Styling & Floating Animations */
.solution-image-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.solution-mockup {
  transition: var(--transition-smooth);
}

/* 1. Laptop Layout & Float */
.bg-dark-purple .solution-mockup {
  width: 450px;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.3));
  animation: laptopFloat 6s ease-in-out infinite alternate;
}

.agencias-row .solution-mockup {
  width: 550px;
  filter: none !important;
  animation: none !important;
}

@keyframes laptopFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* 2. Smartphone Layout (Circular Crop) & Float */
/* .bg-light-grey .solution-mockup {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  animation: phoneFloat 5.5s ease-in-out infinite alternate;
} */

.go-row .solution-mockup {
  border: none;
  width: 420px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  animation: none;
}

@keyframes phoneFloat {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-8px) scale(1.02);
  }
}

/* 3. Purple Card Layout & Float */
.bg-soft-lavender .solution-mockup {
  width: 520px;
  animation: cardFloat 5s ease-in-out infinite alternate;
}

@keyframes cardFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-12px);
  }
}

/* Mockup Interaction hover scales */
.solution-media-inner:hover .solution-mockup {
  transform: scale(1.04) !important;
}

.bg-soft-lavender .solution-media-inner:hover .solution-mockup {
  transform: scale(1.04) !important;
}

/* ==========================================================================
   9. Ajustes Responsivos Adicionais
   ========================================================================== */
@media (max-width: 991px) {
  p.gam-tech-subtitle br {
    display: none !important;
  }

  .card-hero-section {
    background-position: 100% 0;
  }

  .isMobile {
    display: block !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: unset !important;
  }

  .isDesktop {
    display: none !important;
  }

  .stats-section {
    padding: 80px 0;
    min-height: auto;
  }

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

  .stat-card {
    padding: 35px 24px;
    min-height: 200px;
  }

  .stat-number {
    font-size: 3rem;
  }

  .partners-section {
    padding: 70px 0 0;
  }

  .partners-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .partners-grid {
    gap: 25px 40px;
  }

  .partner-logo {
    width: 120px;
  }

  .partners-footer-text {
    font-size: 1.6rem;
  }

  /* Solutions Showcase overrides */
  .solutions-showcase {
    width: 100%;
  }

  .solution-row {
    padding: 70px 0;
  }

  .solution-container {
    flex-direction: column-reverse !important;
    gap: 45px;
    text-align: center;
  }

  .go-row .solution-container,
  .agencias-row .solution-container,
  .gamificacao-row .solution-container {
    flex-direction: column !important;
  }

  .solution-content {
    max-width: 100%;
  }

  .solution-title {
    font-size: 2.1rem;
  }

  .solution-desc {
    font-size: 1.05rem;
    margin-bottom: 25px;
  }

  .solution-media-inner {
    width: 340px;
    height: 340px;
  }

  .solution-circle-bg {
    width: 250px;
    height: 250px;
  }

  .solution-crown-decor {
    width: 36px;
    height: 36px;
    top: 10px;
  }

  .bg-dark-purple .solution-mockup {
    width: 350px;
  }

  .bg-light-grey .solution-mockup {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .bg-soft-lavender .solution-mockup {
    width: 260px;
  }

  .gamificacao-media-right {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .stats-crown-bg {
    width: 180px;
    height: 180px;
  }

  .stat-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    padding: 25px 10px;
    min-height: 160px;
  }

  .stat-number {
    font-size: 2.5rem;
    white-space: nowrap;
  }

  .stat-label {
    font-size: 0.95rem;
  }

  .partners-title {
    font-size: 1.45rem;
  }

  .partners-grid {
    gap: 20px 30px;
  }

  .partner-logo {
    width: 100px;
  }

  .partners-footer {
    padding-top: 35px;
    margin-top: 35px;
  }

  .partners-footer-text {
    font-size: 1.25rem;
  }

  /* Solutions Showcase mobile overrides */
  .solution-row {
    padding: 50px 0;
  }

  .solution-container {
    gap: 30px;
  }

  .solution-title {
    font-size: 1.75rem;
  }

  .solution-desc {
    font-size: 0.95rem;
  }

  .solution-media-inner {
    width: unset;
    height: unset;
  }

  .solution-circle-bg {
    width: 200px;
    height: 200px;
  }

  .bg-dark-purple .solution-mockup {
    width: 290px;
  }

  .bg-soft-lavender .solution-mockup {
    width: 220px;
  }
}

/* ==========================================================================
   11. Seção: Criamos conexões reais (Metas e Realizações)
   ========================================================================== */
.connections-section {
  background-color: var(--color-white);
  padding: 100px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.connections-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.connections-media {
  flex: 1.15;
  position: relative;
  margin-left: calc(-50vw + 50%);
  width: calc(50vw + 50%);
  display: flex;
  justify-content: flex-end;
}

.connections-crown {
  position: absolute;
  top: -55px;
  left: 60%;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  z-index: 5;
  color: #fbb334;
  animation: crownFloatSolutions 3.2s ease-in-out infinite alternate;
}

.connections-image-wrapper {
  width: 100%;
  border: none;
  transition: var(--transition-smooth);
}

.connections-image-wrapper:hover {
  transform: scale(1.02);
}

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

.connections-content {
  flex: 0.85;
  max-width: 520px;
}

.connections-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-family: var(--font-primary);
}

.connections-desc {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--color-graphite-text);
  margin-bottom: 35px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.connections-btn {
  text-transform: none;
}

/* ==========================================================================
   12. Seção: Conteúdos sobre Premiações (Blog CTA)
   ========================================================================== */
.blog-banner-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 130px 0;
  text-align: center;
  width: 100%;
  color: var(--color-white);
  overflow: hidden;
}

.blog-banner-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.blog-banner-crown {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: #fbb334;
  animation: crownFloatSolutions 3.2s ease-in-out infinite alternate;
}

.blog-banner-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.25;
  letter-spacing: -0.5px;
  font-family: var(--font-primary);
}

.blog-banner-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  font-weight: 500;
  font-family: var(--font-primary);
}

.blog-banner-btn {
  background-color: var(--color-tertiary-orange);
  color: var(--color-white) !important;
  box-shadow: 0 10px 25px rgba(232, 68, 45, 0.4);
}

.blog-banner-btn:hover {
  box-shadow: 0 15px 30px -5px rgba(232, 68, 45, 0.6);
}

/* ==========================================================================
   13. Seção: Sua Próxima Premiação (Contact CTA)
   ========================================================================== */
.contact-cta-section {
  background-color: #faf2f7;
  padding: 100px 0 110px;
  text-align: center;
  width: 100%;
}

.contact-cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
  font-family: var(--font-primary);
}

.contact-cta-desc {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--color-primary-hover);
  margin-bottom: 35px;
  font-weight: 500;
  max-width: 600px;
  font-family: var(--font-primary);
}

.contact-cta-btn {
  background-color: var(--color-tertiary-orange);
  color: var(--color-white) !important;
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-primary);
  display: inline-block;
  box-shadow: 0 10px 25px rgba(232, 68, 45, 0.3);
  transition: var(--transition-smooth);
}

.contact-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(232, 68, 45, 0.5);
  background-color: var(--color-tertiary-orange-hover);
}

/* ==========================================================================
   14. Ajustes Responsivos para as Novas Seções
   ========================================================================== */
@media (max-width: 991px) {
  .connections-section {
    padding: 80px 0;
  }

  .connections-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .connections-media {
    max-width: 100%;
    margin-left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .connections-crown {
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .connections-image-wrapper {
    max-width: 380px;
    height: 320px;
    border-radius: 80px 80px 80px 0;
  }

  .connections-title {
    font-size: 2.1rem;
  }

  .connections-desc {
    font-size: 1.05rem;
  }

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

  .blog-banner-title {
    font-size: 2.1rem;
  }

  .blog-banner-desc {
    font-size: 1.1rem;
  }

  .contact-cta-section {
    padding: 80px 0;
  }

  .contact-cta-title {
    font-size: 2.2rem;
  }

  .contact-cta-desc {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .connections-section {
    padding: 60px 0;
  }

  .connections-image-wrapper {
    max-width: unset;
    height: unset;
    border-radius: 0;
  }

  .connections-title {
    font-size: 1.8rem;
  }

  .blog-banner-title {
    font-size: 1.7rem;
  }

  .blog-banner-desc {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .contact-cta-title {
    font-size: 1.8rem;
  }

  .contact-cta-desc {
    font-size: 1rem;
    margin-bottom: 25px;
  }
}

/* ==========================================================================
   15. Custom Theme Footer Styles
   ========================================================================== */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 80px 0 50px;
  width: 100%;
  font-family: var(--font-primary);
}

.site-footer-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col-cta {
  flex: 1.3;
  max-width: 480px;
}

.footer-cta-text {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-white);
  letter-spacing: -0.5px;
}

.footer-cta-text .highlight-gold {
  color: var(--color-secondary-yellow);
}

.footer-col-links {
  flex: 0.9;
}

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

.footer-links-list li a {
  color: var(--color-secondary-yellow);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 2px;
  transition: var(--transition-smooth);
}

.footer-links-list li a:hover {
  color: var(--color-secondary-yellow-hover);
  padding-left: 4px;
}

.footer-col-contact {
  flex: 1;
  max-width: 320px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 1.05rem;
  transition: var(--transition-smooth);
}

.footer-contact-list li a:hover {
  color: var(--color-white);
}

.footer-icon {
  width: 20px;
  height: 20px;
  color: var(--color-white);
  flex-shrink: 0;
  stroke: var(--color-white);
}

.footer-divider {
  border: 0;
  border-top: 1.5px solid rgba(255, 255, 255, 0.15);
  margin: 50px 0 35px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
  display: block;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-copyright a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  transition: var(--transition-smooth);
}

.footer-copyright a:hover {
  color: var(--color-white);
}

.copyright-line {
  font-weight: 700;
  margin-bottom: 2px;
}

.policy-line {
  font-weight: 500;
  margin-bottom: 2px;
}

.lgpd-line {
  font-weight: 400;
}

/* Responsive Footer adjustments */
@media (max-width: 991px) {
  .site-footer {
    padding: 60px 0 40px;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .footer-col {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-cta-text {
    font-size: 1.8rem;
    text-align: center;
  }

  .footer-links-list,
  .footer-contact-list {
    align-items: center;
  }

  .footer-divider {
    margin: 40px 0 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-cta-text {
    font-size: 1.6rem;
  }

  .footer-links-list li a {
    font-size: 1.05rem;
  }

  .footer-contact-list li a {
    font-size: 0.95rem;
  }

  .footer-copyright {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   16. Custom Institutional "Sobre" Page Styles
   ========================================================================== */
.about-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 90vh;
  padding: 100px 0 190px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  width: 100%;
}

.about-hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-crown-img {
  width: 100%;
  height: auto;
  display: block;
}

.about-hero-title {
  font-size: 2.9rem;
  font-weight: 800;
  color: var(--color-header-page-title);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -1px;
  font-family: var(--font-primary);
}

.about-hero-subheadline {
  font-size: 1.3rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  font-weight: 500;
  max-width: 620px;
  font-family: var(--font-primary);
}

.about-hero-btn {
  text-transform: none;
}

/* Row 2 & 3: Split Two Columns */
.about-two-columns {
  padding: 100px 0 150px;
  width: 100%;
}

.about-two-columns.bg-slate-light {
  background-color: #f6f3f7;
}

.about-two-columns.bg-white-pure {
  background-color: var(--color-white);
}

.about-two-columns-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 70px;
}

.about-col-left {
  flex: 1;
  max-width: 480px;
}

.about-col-right {
  flex: 1.1;
  max-width: 560px;
}

.about-row-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-family: var(--font-primary);
}

.about-row-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-graphite-text);
  margin-bottom: 35px;
  font-family: var(--font-primary);
}

.about-row-btn {
  text-transform: none;
}

/* Row 4: Pillars of Recognition */
.about-pillars-section {
  background-color: #faf2f7;
  padding: 0 0 110px;
  width: 100%;
}

.about-pillars-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

.about-pillars-left {
  flex: 1;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -80px;
}

.about-pillars-media-wrapper {
  position: relative;
  width: 100%;
  /* max-width: 320px; */
  margin-bottom: 30px;
}

.about-pillars-image-capsule {
  width: 100%;
}

.about-pillars-image-capsule:hover {
  transform: scale(1.02);
}

.about-pillars-img {
  width: 100%;
  height: 100%;
  display: block;
}

.about-pillars-section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
  text-align: left;
  line-height: 1.25;
  max-width: 360px;
  margin: 0 auto;
  font-family: var(--font-primary);
}

.about-pillars-right {
  flex: 1.2;
  max-width: 600px;
  padding-top: 100px;
}

.about-pillars-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-pillar-item {
  border-bottom: 1.5px solid rgba(86, 33, 92, 0.12);
  padding: 28px 0;
}

.about-pillar-item:first-child {
  padding-top: 0;
}

.about-pillar-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-pillar-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
  font-family: var(--font-primary);
}

.about-pillar-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-graphite-text);
  font-family: var(--font-primary);
}

/* ==========================================================================
   17. Ajustes Responsivos para a Página "Sobre"
   ========================================================================== */
@media (max-width: 991px) {
  .about-hero {
    padding: 150px 0 80px;
    min-height: auto;
    text-align: center;
  }

  .about-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-hero-title {
    font-size: 2.6rem;
  }

  .about-hero-subheadline {
    font-size: 1.15rem;
    margin-bottom: 30px;
  }

  .about-two-columns {
    padding: 70px 0;
  }

  .about-two-columns-container {
    flex-direction: column;
    gap: 30px;
  }

  .about-col-left,
  .about-col-right {
    max-width: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-row-title {
    font-size: 2rem;
  }

  .about-row-desc {
    font-size: 1.05rem;
    margin-bottom: 25px;
  }

  .about-pillars-section {
    padding: 75px 0;
  }
  .about-pillars-media-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .about-pillars-container {
    flex-direction: column;
    gap: 0px;
  }

  .about-pillars-left,
  .about-pillars-right {
    max-width: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-pillars-right {
    padding-top: 0;
  }

  .about-pillars-image-capsule {
    height: 380px;
    max-width: 260px;
  }

  .about-pillars-section-title {
    font-size: 1.9rem;
    max-width: 100%;
    text-align: center;
  }

  .about-pillar-item {
    padding: 22px 0;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .about-hero-title {
    font-size: 2.1rem;
  }

  .about-hero-subheadline {
    font-size: 1rem;
  }

  .about-hero-crown {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .about-row-title {
    font-size: 1.7rem;
  }

  .about-pillars-image-capsule {
    height: 300px;
    max-width: 220px;
  }

  .about-pillars-section-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .about-pillar-title {
    font-size: 1.2rem;
  }

  .about-pillar-desc {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   18. Página "Para Agências" (Agências)
   ========================================================================== */

/* Row 1: Hero Section */
.agency-hero {
  background-color: #f1f1f1;
  padding: 120px 0 100px;
  width: 100%;
}

.agency-hero-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.agency-hero-left {
  flex: 1;
  max-width: 480px;
}

.agency-image-media-wrapper {
  position: relative;
  width: 100%;
}

.agency-crown {
  position: absolute;
  top: -45px;
  left: -20px;
  z-index: 10;
  animation: floatNotification 4s ease-in-out infinite;
}

.decor-crown-img {
  width: 64px;
  height: auto;
}

.agency-image-capsule {
  width: 100%;
  height: 480px;
  transition: var(--transition-smooth);
}

.agency-image-capsule:hover {
  transform: scale(1.02);
}

.agency-hero-img {
  width: 100%;
  height: 100%;
  display: block;
}

.agency-hero-right {
  flex: 1.2;
}

.agency-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: var(--font-primary);
}

.agency-hero-sub {
  font-size: 1.4rem;
  line-height: 1.65;
  color: var(--color-graphite-text);
  margin-bottom: 40px;
  font-family: var(--font-primary);
}

/* Stats Row */
.agency-hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.agency-stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 250px;
}

.agency-stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  font-family: var(--font-primary);
}

.agency-stat-lbl {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-primary);
  font-family: var(--font-primary);
}

.agency-hero-btn {
  background-color: var(--color-tertiary-orange);
  color: var(--color-white) !important;
  box-shadow: 0 10px 25px rgba(232, 68, 45, 0.4);
}

.agency-hero-btn:hover {
  box-shadow: 0 15px 30px -5px rgba(232, 68, 45, 0.6);
}

/* Row 2: Features Section */
.agency-features-section {
  background-color: var(--color-secondary-purple-light);
  padding: 120px 0;
  width: 100%;
}

.agency-features-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 80px;
  align-items: center;
}

.agency-features-left {
  flex: 1;
  max-width: 420px;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.agency-features-headline {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 24px;
  font-family: var(--font-primary);
}

.agency-features-desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--color-graphite-text);
  margin-bottom: 40px;
  font-family: var(--font-primary);
}

.agency-features-btn {
  background-color: var(--color-tertiary-orange);
  color: var(--color-white) !important;
  box-shadow: 0 10px 25px rgba(232, 68, 45, 0.4);
}

.agency-features-btn:hover {
  box-shadow: 0 15px 30px -5px rgba(232, 68, 45, 0.6);
}

.agency-features-right {
  flex: 1.3;
}

.agency-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.agency-feature-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.agency-feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: rgba(86, 33, 92, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: var(--transition-smooth);
}

.agency-feature-item:hover .agency-feature-icon-wrapper {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(86, 33, 92, 0.15);
}

.agency-feature-icon {
  width: 24px;
  height: 24px;
}

.agency-feature-text {
  flex: 1;
}

.agency-feature-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.3;
  font-family: var(--font-primary);
}

.agency-feature-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-graphite-text);
  font-family: var(--font-primary);
}

/* Responsive Media Queries for Agencies */
@media (max-width: 991px) {
  .agency-hero {
    padding: 140px 0 80px;
  }

  .agency-hero-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .agency-hero-left {
    max-width: 320px;
  }

  .agency-hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .agency-image-capsule {
    height: 380px;
  }

  .agency-hero-title {
    font-size: 2.3rem;
  }

  .agency-hero-stats {
    justify-content: center;
  }

  .agency-features-section {
    padding: 80px 0;
  }

  .agency-features-container {
    flex-direction: column;
    gap: 50px;
  }

  .agency-features-left {
    max-width: 100%;
    position: static;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .agency-features-headline {
    font-size: 2.1rem;
  }
}

@media (max-width: 576px) {
  .agency-hero-title {
    font-size: 1.9rem;
  }

  .agency-hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .agency-stat-item {
    justify-content: center;
  }

  .agency-features-headline {
    font-size: 1.7rem;
  }

  .agency-feature-item {
    gap: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .agency-feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .agency-feature-icon {
    width: 20px;
    height: 20px;
  }
}

/* ==========================================================================
   19. Página "Blog" (Conteúdos)
   ========================================================================== */

/* Row 1: Blog Hero Banner */
.blog-hero {
  background-size: cover;
  background-position: center;
  padding: 160px 0 140px;
  text-align: center;
  width: 100%;
  min-height: 805px;
  display: flex;
  align-items: center;
}

.blog-hero-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.blog-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-header-page-title);
  line-height: 1.25;
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.blog-hero-sub {
  font-size: 1.35rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  line-height: 1.6;
  font-family: var(--font-primary);
}

/* Row 2: Category Filter Buttons */
/* Row 2: Category Filter Cards */
.blog-categories-section {
  background-color: var(--color-white);
  padding: 60px 0 40px;
  width: 100%;
}

.blog-categories-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

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

.blog-category-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white) !important;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.4;
  padding: 30px 24px;
  min-height: 155px;
  border-radius: 24px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  font-family: var(--font-primary);
  text-align: center;
}

.blog-category-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(86, 33, 92, 0.12);
  filter: brightness(1.05);
}

/* Row 3 & 4: Blog Posts Grid */
.blog-posts-section {
  padding: 100px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.blog-posts-section.bg-gray-light {
  background-color: #f6f3f7;
}

.blog-posts-section.bg-white-pure {
  background-color: var(--color-white);
}

/* Subtle watermarks in background */
.blog-crown-watermark {
  position: absolute;
  opacity: 0.04;
  z-index: 1;
  pointer-events: none;
  width: 200px;
}

.blog-crown-watermark img {
  width: 100%;
  height: auto;
}

.blog-crown-watermark.watermark-left {
  top: 15%;
  left: -50px;
  transform: rotate(15deg);
}

.blog-crown-watermark.watermark-right {
  bottom: 15%;
  right: -50px;
  transform: rotate(-15deg);
}

.blog-posts-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

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

.blog-post-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

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

.blog-post-image-wrapper {
  margin-bottom: 24px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.blog-post-image-capsule {
  width: 270px;
  height: 200px;
  border-radius: 50px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.blog-post-card:hover .blog-post-image-capsule {
  box-shadow: 0 20px 35px rgba(86, 33, 92, 0.15);
}

.blog-post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-post-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.blog-post-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 280px;
  font-family: var(--font-primary);
  text-align: left;
}

.blog-post-excerpt {
  font-size: 0.92rem;
  font-weight: 400;
  color: #635f66; /* Elegant soft slate/gray */
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
  font-family: var(--font-primary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.blog-post-btn {
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(86, 33, 92, 0.2);
  font-family: var(--font-primary);
}

.blog-post-btn:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 8px 20px rgba(86, 33, 92, 0.35);
  transform: translateY(-1px);
}

/* Responsive Overrides for Blog Page */
@media (max-width: 991px) {
  .blog-hero {
    padding: 140px 0 100px;
  }

  .blog-hero-title {
    font-size: 2.6rem;
  }

  .blog-hero-sub {
    font-size: 1.15rem;
  }

  .blog-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .blog-category-btn {
    min-height: 120px;
    font-size: 0.95rem;
    padding: 20px;
  }

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

  .blog-posts-section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .blog-categories-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .blog-category-btn {
    min-height: 90px;
    padding: 16px;
    border-radius: 16px;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .blog-hero-title {
    font-size: 2.1rem;
  }

  .blog-hero-sub {
    font-size: 1rem;
  }

  .blog-post-image-capsule {
    width: 200px;
    height: 200px;
    border-radius: 100px 100px 100px 0;
  }

  .blog-post-title {
    font-size: 1.15rem;
  }
}

/* Premium Blog Pagination */
.blog-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.blog-pagination ul.page-numbers {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  align-items: center;
}

.blog-pagination ul.page-numbers li {
  margin: 0;
}

.blog-pagination ul.page-numbers a,
.blog-pagination ul.page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary) !important;
  background-color: #faf2f7;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.blog-pagination ul.page-numbers span.current {
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  box-shadow: 0 4px 12px rgba(86, 33, 92, 0.2);
}

.blog-pagination ul.page-numbers a:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(86, 33, 92, 0.25);
}

/* AJAX Infinite Load More Button Styling */
.blog-load-more-container {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.blog-load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 40px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(86, 33, 92, 0.05);
}

.blog-load-more-btn:hover:not(:disabled) {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 10px 25px rgba(86, 33, 92, 0.2);
  transform: translateY(-3px);
}

.blog-load-more-btn:active:not(:disabled) {
  transform: translateY(-1px);
}

.blog-load-more-btn:disabled {
  cursor: not-allowed;
  border-color: rgba(86, 33, 92, 0.2);
  color: rgba(86, 33, 92, 0.4);
}

/* Spinner Loader Animation */
.blog-load-more-btn .btn-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blog-load-more-btn .spinner {
  animation: rotateSpinner 2s linear infinite;
  width: 20px;
  height: 20px;
}

.blog-load-more-btn .spinner .path {
  stroke: currentColor;
  stroke-linecap: round;
  animation: dashSpinner 1.5s ease-in-out infinite;
}

@keyframes rotateSpinner {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dashSpinner {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

/* Empty Blog Placeholder */
.blog-no-posts-container {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  background-color: #faf2f7;
  border-radius: 24px;
  border: 2px dashed rgba(86, 33, 92, 0.12);
  max-width: 600px;
  margin: 40px auto;
  width: 100%;
}

.blog-no-posts-msg {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-primary);
}

/* ==========================================================================
   20. Página "Single Post" (Artigo Individual)
   ========================================================================== */

.single-post-header {
  background-size: cover;
  background-position: center;
  padding: 220px 0 180px;
  text-align: center;
  width: 100%;
  position: relative;
}

.single-post-header-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.single-post-category-tag {
  display: inline-block;
  background-color: #faf2f7;
  color: var(--color-primary) !important;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.single-post-category-tag:hover {
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  transform: translateY(-1px);
}

.single-post-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 24px;
  font-family: var(--font-primary);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.single-post-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.meta-item i {
  color: #e8a43c; /* Gold accent */
  font-size: 1.1rem;
}

.meta-divider {
  color: rgba(255, 255, 255, 0.4);
}

.single-post-content-section {
  padding: 80px 0 100px;
  background-color: var(--color-white);
  width: 100%;
}

.single-post-content-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 24px;
}

.single-post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-post-entry-content {
  font-size: 1.125rem;
  line-height: 1.85;
  color: #3d3741;
  font-family: var(--font-primary);
}

.single-post-entry-content p {
  margin-bottom: 30px;
}

.single-post-entry-content h2,
.single-post-entry-content h3 {
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.3;
  font-family: var(--font-primary);
}

.single-post-entry-content h2 {
  font-size: 1.85rem;
  margin: 50px 0 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(86, 33, 92, 0.05);
}

.single-post-entry-content h3 {
  font-size: 1.45rem;
  margin: 40px 0 20px;
}

.single-post-entry-content blockquote {
  margin: 40px 0;
  padding: 24px 32px;
  border-left: 6px solid var(--color-primary);
  background-color: #faf2f7;
  border-radius: 0 24px 24px 0;
  font-style: italic;
  color: var(--color-primary);
  font-size: 1.25rem;
  line-height: 1.6;
}

.single-post-entry-content blockquote p {
  margin: 0;
}

.single-post-entry-content ul,
.single-post-entry-content ol {
  margin-bottom: 30px;
  padding-left: 24px;
}

.single-post-entry-content li {
  margin-bottom: 12px;
}

.single-post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(86, 33, 92, 0.08);
}

.single-post-share-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.single-post-share-box .share-title {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.single-post-share-box .share-buttons {
  display: flex;
  gap: 10px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--color-white) !important;
  font-size: 1.25rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.share-btn.linkedin {
  background-color: #0077b5;
}

.share-btn.whatsapp {
  background-color: #25d366;
}

.share-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.single-post-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary) !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.single-post-back-btn i {
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.single-post-back-btn:hover {
  color: var(--color-primary-hover) !important;
}

.single-post-back-btn:hover i {
  transform: translateX(-4px);
}

.single-related-posts-section {
  padding: 100px 0;
  background-color: #faf9fb;
  border-top: 1px solid rgba(86, 33, 92, 0.04);
  width: 100%;
}

.single-related-posts-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

.related-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 60px;
  font-family: var(--font-primary);
}

/* Single Post Responsive Overrides */
@media (max-width: 991px) {
  .single-post-title {
    font-size: 2.3rem;
  }

  .single-post-featured-image {
    margin-top: -60px;
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .single-post-header {
    padding: 150px 0 120px;
  }

  .single-post-title {
    font-size: 1.95rem;
  }

  .single-post-featured-image {
    margin-top: -40px;
    border-radius: 16px;
    margin-bottom: 30px;
  }

  .single-post-entry-content {
    font-size: 1.05rem;
  }

  .single-post-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .single-related-posts-section {
    padding: 70px 0;
  }

  .related-section-title {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
}

/* ==========================================================================
   21. Página "Contato" (Hero & Formulário Split)
   ========================================================================== */

.contact-hero-section {
  background-color: var(--color-primary); /* Dark Purple */
  padding: 67px 0 0 0;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.contact-hero-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 5;
  box-shadow: 0 25px 25px -20px rgba(0, 0, 0, 0.6);
}

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

.contact-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* padding: 50px 0; */
  position: relative;
  z-index: 10;
}

.contact-hero-grid img {
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.contact-headline {
  font-size: 3.6rem;
  font-weight: 800;
  color: #e8a43c; /* Gold color */
  line-height: 1.15;
  margin-bottom: 24px;
  font-family: var(--font-primary);
}

.contact-subtext {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 520px;
  font-family: var(--font-primary);
}

/* Contact Form Styling */
.contact-form-wrapper {
  width: 100%;
  max-width: 440px;
  margin-bottom: 10px;
}

.cf7-contact-form,
.contact-form-wrapper .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.cf7-contact-form .form-field,
.contact-form-wrapper .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.cf7-contact-form input[type="text"],
.cf7-contact-form input[type="email"],
.cf7-contact-form input[type="tel"],
.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form input[type="tel"] {
  background-color: rgba(255, 255, 255, 0.94);
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 0.98rem;
  color: var(--color-primary);
  font-weight: 500;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
  font-family: var(--font-primary);
}

.cf7-contact-form input[type="text"]:focus,
.cf7-contact-form input[type="email"]:focus,
.cf7-contact-form input[type="tel"]:focus,
.contact-form-wrapper .wpcf7-form input[type="text"]:focus,
.contact-form-wrapper .wpcf7-form input[type="email"]:focus,
.contact-form-wrapper .wpcf7-form input[type="tel"]:focus {
  background-color: var(--color-white);
  border-color: rgba(232, 164, 60, 0.3);
  outline: none;
  box-shadow: 0 8px 24px rgba(232, 164, 60, 0.25);
  transform: translateY(-1px);
}

.cf7-contact-form input::placeholder,
.contact-form-wrapper .wpcf7-form input::placeholder {
  color: #b5abb8;
  opacity: 1;
}

.cf7-contact-form .form-submit,
.contact-form-wrapper .wpcf7-form .form-submit {
  width: 100%;
}

.cf7-contact-form button[type="submit"],
.cf7-contact-form input[type="submit"],
.contact-form-wrapper .wpcf7-form button[type="submit"],
.contact-form-wrapper .wpcf7-form input[type="submit"] {
  background-color: #e8442d !important; /* Orange-Red color */
  color: var(--color-white) !important;
  border: none;
  border-radius: 50px;
  padding: 15px 44px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-block;
  font-family: var(--font-primary);
  box-shadow: 0 8px 24px rgba(232, 68, 45, 0.35);
  text-align: center;
  width: auto;
}

.cf7-contact-form button[type="submit"]:hover,
.cf7-contact-form input[type="submit"]:hover,
.contact-form-wrapper .wpcf7-form button[type="submit"]:hover,
.contact-form-wrapper .wpcf7-form input[type="submit"]:hover {
  background-color: #d03723 !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(232, 68, 45, 0.5);
}

.cf7-contact-form button[type="submit"]:active,
.cf7-contact-form input[type="submit"]:active,
.contact-form-wrapper .wpcf7-form button[type="submit"]:active,
.contact-form-wrapper .wpcf7-form input[type="submit"]:active {
  transform: translateY(-1px);
}

/* CF7 Validation Feedback Aesthetics */
.contact-form-wrapper .wpcf7-not-valid-tip {
  color: #ff5252;
  font-size: 0.82rem;
  font-weight: 600;
  display: block;
  margin-top: 4px;
  padding-left: 20px;
  text-align: left;
}

.contact-form-wrapper .wpcf7-response-output {
  margin: 20px 0 0 0 !important;
  padding: 14px 20px !important;
  border-radius: var(--border-radius-md) !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  text-align: center !important;
  font-family: var(--font-primary) !important;
  border: 2px solid transparent !important;
}

/* Success status response box */
.contact-form-wrapper .wpcf7-mail-sent-ok {
  background-color: rgba(34, 197, 94, 0.12) !important;
  border-color: #22c55e !important;
  color: #22c55e !important;
}

/* Fail/Validation status response box */
.contact-form-wrapper .wpcf7-validation-errors,
.contact-form-wrapper .wpcf7-mail-sent-ng,
.contact-form-wrapper .wpcf7-aborted,
.contact-form-wrapper .wpcf7-spam-blocked {
  background-color: rgba(232, 68, 45, 0.12) !important;
  border-color: #e8442d !important;
  color: #e8442d !important;
}

/* Right Column Backing Shapes & Retrato */
.contact-right-col {
  position: relative;
  height: 100%;
}

.contact-backing-circle {
  background-color: #e8a43c; /* Gold */
  width: 380px;
  height: 380px;
  border-radius: 50%;
  position: absolute;
  right: -20px;
  bottom: 80px;
  z-index: 1;
}

.contact-backing-capsule {
  background-color: #e0d0e0;
  opacity: 0.3;
  width: 180px;
  height: 400px;
  border-radius: 100px;
  transform: rotate(-45deg);
  position: absolute;
  right: 220px;
  top: 40px;
  z-index: 1;
}

.contact-backing-crown {
  position: absolute;
  right: 180px;
  bottom: 220px;
  z-index: 2;
  width: 130px;
  opacity: 0.9;
  transform: rotate(15deg);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

.contact-portrait-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.contact-portrait-img {
  min-height: 100%;
  height: 100%;
  width: 100%;
  display: block;
}

/* Responsive Rules for Contato Page */
@media (max-width: 1199px) {
  .contact-headline {
    font-size: 3rem;
  }

  .contact-backing-circle {
    width: 320px;
    height: 320px;
  }

  .contact-portrait-img {
    max-width: 400px;
  }
}

@media (max-width: 991px) {
  .contact-hero-section {
    padding: 150px 0 80px;
    min-height: auto;
  }

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

  .contact-hero-grid img {
    display: none;
  }

  .contact-left-col {
    align-items: center;
    text-align: center;
  }

  .contact-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .cf7-contact-form input[type="text"],
  .cf7-contact-form input[type="email"],
  .cf7-contact-form input[type="tel"],
  .contact-form-wrapper .wpcf7-form input[type="text"],
  .contact-form-wrapper .wpcf7-form input[type="email"],
  .contact-form-wrapper .wpcf7-form input[type="tel"] {
    text-align: center;
  }

  .cf7-contact-form button[type="submit"],
  .cf7-contact-form input[type="submit"],
  .contact-form-wrapper .wpcf7-form button[type="submit"],
  .contact-form-wrapper .wpcf7-form input[type="submit"] {
    width: 100%;
  }

  .contact-right-col {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .contact-headline {
    font-size: 2.3rem;
  }

  .contact-subtext {
    font-size: 1.05rem;
  }

  .contact-backing-circle {
    width: 250px;
    height: 250px;
    bottom: 40px;
  }

  .contact-backing-capsule {
    width: 120px;
    height: 280px;
    right: 140px;
  }

  .contact-portrait-img {
    max-width: 320px;
  }
}

/* ==========================================================================
   22. Página "Plataforma Reconhece" (Showcase & Bento Rows)
   ========================================================================== */

.plat-hero-section {
  background-color: #f1f1f1;
  width: 100%;
  position: relative;
  padding: 150px 0 0 0;
}

.plat-hero-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
}

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

.plat-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.plat-hero-sub {
  font-size: 1.15rem;
  color: var(--color-graphite-text);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
  font-family: var(--font-primary);
}

.plat-hero-btn {
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-primary);
  margin-bottom: 80px;
}

.plat-hero-laptop {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: -50px;
}

/* Section 2: Management Checklist */
.plat-mgmt-section {
  background-color: var(--color-white);
  padding: 100px 0;
  border-top: 1px solid rgba(86, 33, 92, 0.06);
  width: 100%;
}

.plat-mgmt-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

.plat-mgmt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.plat-section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  font-family: var(--font-primary);
  letter-spacing: -0.5px;
}
.text-center {
  text-align: center;
}
.plat-mgmt-left {
  display: flex;
  justify-content: flex-start;
}

.plat-mgmt-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
}

.plat-mgmt-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1.5px solid rgba(86, 33, 92, 0.08);
  font-family: var(--font-primary);
}

.plat-mgmt-item:first-child {
  border-top: 1.5px solid rgba(86, 33, 92, 0.08);
}

.plat-mgmt-index {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
}

.plat-mgmt-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #3d3741;
  line-height: 1.5;
}

/* Section 3: Centered Manifesto */
.plat-manifesto-section {
  background-color: #fbf9fc;
  padding: 100px 0;
  width: 100%;
}

.plat-manifesto-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

.plat-manifesto-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.plat-manifesto-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 24px;
  font-family: var(--font-primary);
}

.plat-manifesto-desc {
  font-size: 1.3rem;
  color: var(--color-graphite-text);
  line-height: 1.5;
  font-family: var(--font-primary);
}

/* Section 4: Segments Capsules Moments */
.plat-moments-section {
  background-color: var(--color-white);
  padding: 120px 0 100px;
  width: 100%;
}

.plat-moments-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

.plat-moments-main-title {
  text-align: center;
  margin-bottom: 70px;
}

.plat-moments-grid {
  display: flex;
  gap: 24px;
  width: 100%;
  padding-top: 65px; /* Perfect headroom for the 44px floating crown sitting 10px above the card! */
}

.plat-moment-wrapper {
  position: relative;
  height: 390px;
  flex: 1;
  min-width: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.plat-moment-capsule {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 20px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2.5px solid transparent;
}

.plat-moment-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.plat-moment-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(86, 33, 92, 0.85) 0%,
    rgba(86, 33, 92, 0.25) 60%,
    transparent 100%
  );
  transition: var(--transition-smooth);
  z-index: 1;
}

.plat-moment-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-white);
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  font-family: var(--font-primary);
}

.plat-moment-wrapper:hover .plat-moment-bg {
  transform: scale(1.08);
}

.plat-moment-wrapper:hover .plat-moment-overlay {
  background: linear-gradient(
    to top,
    rgba(232, 68, 45, 0.95) 0%,
    rgba(232, 68, 45, 0.45) 60%,
    transparent 100%
  );
}

/* Highlight of active/expanded wrapper (sideways accordion growth) */
.plat-moment-wrapper:hover,
.plat-moment-wrapper.active-highlight {
  flex: 1.4;
}

.plat-moment-wrapper:hover .plat-moment-capsule,
.plat-moment-wrapper.active-highlight .plat-moment-capsule {
  box-shadow: 0 20px 40px rgba(86, 33, 92, 0.25);
  border-color: var(--color-secondary-yellow); /* Yellow border highlight */
}

.plat-moment-wrapper:hover .plat-moment-overlay,
.plat-moment-wrapper.active-highlight .plat-moment-overlay {
  background: linear-gradient(
    to top,
    rgba(86, 33, 92, 0.96) 0%,
    rgba(86, 33, 92, 0.5) 60%,
    transparent 100%
  );
}

.plat-moment-crown {
  position: absolute;
  bottom: calc(
    100% + 10px
  ); /* Positioned exactly 10px on top of the card top border */
  left: 30px; /* Positioned on the left side initially */
  transform: translateY(
    -10px
  ); /* Upright with slight vertical entrance offset */
  z-index: 10;
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  opacity: 0;
  transition:
    left 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.plat-moment-wrapper:hover .plat-moment-crown,
.plat-moment-wrapper.active-highlight .plat-moment-crown {
  opacity: 1;
  left: 50%; /* Slides smoothly to the center! */
  transform: translateX(-50%) translateY(0); /* Centers perfectly horizontally and drops in vertically */
  animation: momentCrownFloat 2.5s ease-in-out infinite alternate;
}

.plat-moment-wrapper.has-crown-left .plat-moment-crown {
  opacity: 1;
  left: 30px; /* Aligned to the left side */
  transform: translateY(0); /* Drops down vertically, resting static */
}

.plat-moment-crown img {
  width: 100%;
  height: auto;
}

@keyframes momentCrownFloat {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: -6px; /* Smooth floating above card */
  }
}

.plat-moment-content-box {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 140px;
  gap: 0;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.plat-moment-wrapper:hover .plat-moment-content-box,
.plat-moment-wrapper.active-highlight .plat-moment-content-box {
  gap: 12px;
}

.plat-moment-desc-box {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  margin: 0;
  font-weight: 500;
  line-height: 1.45;
  padding: 0 6px;
  font-family: var(--font-primary);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.plat-moment-wrapper:hover .plat-moment-desc-box,
.plat-moment-wrapper.active-highlight .plat-moment-desc-box {
  max-height: 120px;
  opacity: 1;
  margin-top: 4px;
}

/* Section 5: Brands Grid */
.plat-brands-section {
  background-color: var(--color-white);
  width: 100%;
}

.plat-brands-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.plat-brands-grid-slider {
  align-items: center;
  padding: 15px 0;
}

.plat-brand-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.plat-brand-item-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  padding: 0 15px;
  transition: var(--transition-smooth);
}

.plat-brand-item-slider:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

.plat-brand-logo-img {
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .plat-hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .plat-hide-desktop {
    display: none !important;
  }
}

.plat-brands-full-grid {
  max-width: 100%;
  height: auto;
  display: block;
}

.plat-brands-grid-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plat-brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.plat-brands-row-large {
  gap: 48px;
}

.plat-brands-row-large .plat-brand-logo-img {
  max-height: 110px;
  max-width: 280px;
  object-fit: contain;
  transition:
    transform 0.3s ease,
    filter 0.3s ease,
    opacity 0.3s ease;
  opacity: 0.8;
}

.plat-brands-row-large .plat-brand-logo-img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.plat-brands-row-small {
  gap: 32px;
  margin-bottom: 24px;
}

.plat-brands-row-small .plat-brand-logo-img {
  max-height: 75px;
  max-width: 200px;
  object-fit: contain;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    filter 0.3s ease;
}

.plat-brands-row-small .plat-brand-logo-img:hover {
  transform: scale(1.05);
}

.plat-brand-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Section 6: Video Testimonials */
.plat-testimonials-section {
  background-color: var(--color-white);
  padding: 120px 0;
  width: 100%;
}

.plat-testimonials-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

.plat-testimonials-header {
  margin-bottom: 70px;
}

.plat-section-subtext {
  font-size: 1.15rem;
  color: var(--color-graphite-text);
  max-width: 600px;
  margin: 16px auto 0;
  font-family: var(--font-primary);
}

.plat-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
}

.plat-video-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  box-shadow: none;
  border: none;
  transition: var(--transition-smooth);
}

.plat-video-card:hover {
  transform: translateY(-6px);
}

.plat-video-wrapper {
  position: relative;
  width: 100%;
  height: 480px; /* Highly vertical portrait reels ratio */
  border-radius: 36px;
  overflow: hidden;
  background-color: #000;
  cursor: pointer;
  border: 3.5px solid #ebd8e9; /* Symmetrical pink border outline */
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(86, 33, 92, 0.04);
}

.plat-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  opacity: 0.95;
}

.plat-video-card:hover .plat-video-thumb {
  transform: scale(1.04);
  opacity: 0.85;
}

.plat-video-overlay-tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    86,
    33,
    92,
    0.15
  ); /* Translucent brand violet tint overlay */
}

.plat-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px; /* Large play button circle matching the mockup image */
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  color: var(--color-white);
}

.plat-play-svg {
  width: 34px;
  height: 34px;
  fill: rgba(255, 255, 255, 0.1);
  stroke: var(--color-white);
  stroke-width: 1.5;
  margin-left: 4px; /* visually centered inside the circle */
  transition: transform 0.3s ease;
}

.plat-video-card:hover .plat-video-play-btn {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 10px 30px rgba(86, 33, 92, 0.35);
  color: var(--color-white);
}

.plat-video-card:hover .plat-play-svg {
  transform: scale(1.1);
  fill: var(--color-white);
}

.plat-video-meta-box {
  padding: 20px 8px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-family: var(--font-primary);
}

.plat-video-meta-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 2px solid #ebd8e9; /* Pink clapper border matching mockup */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c988be;
  flex-shrink: 0;
}

.plat-clapper-svg {
  width: 22px;
  height: 22px;
  stroke: #c988be;
}

.plat-video-meta-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.plat-video-author {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.2;
}

.plat-video-company {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-graphite-text);
  margin: 0;
  line-height: 1.25;
}

.plat-video-role {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-graphite-text);
  margin: 0;
  line-height: 1.25;
}

.plat-bubbles-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.plat-bubble-item {
  background-color: var(--color-white);
  padding: 40px 32px;
  border-radius: 28px;
  border: 3.5px solid #ebd8e9; /* Symmetrical pink border outline matching video cards */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  font-family: var(--font-primary);
  min-height: 224px; /* Balanced height for aligned cards */
  box-sizing: border-box;
}

.plat-bubble-quote {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-graphite-text);
  line-height: 1.45;
  margin: 0;
  font-style: italic;
  max-width: 250px;
}

.plat-bubble-author {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-graphite-text);
  margin: 0;
}

.plat-bubble-crown {
  position: relative;
  margin: 0 auto 4px;
  width: 36px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plat-bubble-crown img {
  width: 100%;
  height: auto;
}

/* Premium Video Modal Lightbox */
.plat-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(86, 33, 92, 0.95); /* Deep theme purple backing */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plat-video-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.plat-video-modal-content {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background-color: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plat-video-modal.is-active .plat-video-modal-content {
  transform: scale(1);
}

.plat-video-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  color: var(--color-white);
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    background-color 0.3s;
  z-index: 10;
}

.plat-video-modal-close:hover {
  transform: rotate(90deg);
  background-color: var(--color-tertiary-orange);
}

.plat-video-modal-player {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Section 7: Corporate Highlights (Purple Megaphone) */
.plat-corporate-section {
  background-color: var(--color-primary);
  padding: 100px 0 0;
  position: relative;

  width: 100%;
}

.plat-corp-crown-watermark img {
  width: 100%;
  height: auto;
}

.plat-corporate-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

.plat-corporate-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: flex-end;
}

.plat-corporate-left {
  padding-bottom: 100px;
}

.plat-corp-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-secondary-yellow);
  line-height: 1.2;
  margin-bottom: 40px;
  font-family: var(--font-primary);
}

.plat-corp-feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.plat-corp-feat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-primary);
}

.plat-corp-feat-bold {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-white);
}

.plat-corp-feat-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.plat-corporate-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

.plat-corp-megaphone-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: -170px;
}

/* Section 8: Final CTA */
.plat-closing-section {
  background-color: #faf2f7;
  padding: 100px 0;
  text-align: center;
  width: 100%;
}

.plat-closing-section .contact-cta-title {
  color: var(--color-primary);
}

.plat-closing-section .contact-cta-desc {
  color: var(--color-graphite-text);
}

.plat-closing-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.plat-closing-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.plat-closing-sub {
  font-size: 1.15rem;
  color: var(--color-graphite);
  line-height: 1.6;
  margin-bottom: 36px;
  font-family: var(--font-primary);
}

.plat-closing-btn {
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-primary);
}

/* ==========================================================================
   22. Seção: Reconhece Card Page Templates
   ========================================================================== */

/* Section 1: Hero Banner */
.card-hero-section {
  position: relative;
  background-image: url("../images/bg_section_stat.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 160px 0 100px;
  width: 100%;
  overflow: hidden;
}

.card-hero-crown-watermark {
  position: absolute;
  top: 60px;
  right: -50px;
  width: 380px;
  opacity: 0.04;
  pointer-events: none;
  transform: rotate(15deg);
}

.card-hero-crown-watermark img {
  width: 100%;
  height: auto;
}

.card-hero-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.card-hero-img-box {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.card-hero-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(86, 33, 92, 0.12));
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hero-mockup-img:hover {
  transform: translateY(-8px) scale(1.02);
}

.card-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-primary);
}

.card-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.card-hero-sub {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-graphite-text);
  margin-bottom: 36px;
}

.card-hero-sub strong {
  color: var(--color-graphite-text);
  font-weight: 700;
}

.card-hero-btn {
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Section 2: Simples para Premiar Grid */
.card-features-section {
  background-color: var(--color-white);
  padding: 100px 0;
  width: 100%;
}

.card-features-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

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

.card-features-left {
  display: flex;
  justify-content: flex-end;
  font-family: var(--font-primary);
}

.card-features-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -1px;
  max-width: 380px;
}

.card-features-right {
  width: 100%;
}

.card-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.card-feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1.5px solid #ebd8e9; /* Light lavender borders */
}

.card-feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.card-feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 2px solid #ebd8e9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(86, 33, 92, 0.03);
}

.card-svg-icon {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
}

.card-feature-text-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-primary);
}

.card-feature-item-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-graphite-text);
  margin: 0;
}

.card-feature-item-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-graphite-text);
  margin: 0;
}

/* Section 3: Symmetrical Split Row (Highlight) */
.card-highlights-section {
  background-color: #faf2f7; /* Very soft light pink-lavender tint */
  width: 100%;
}

.card-highlights-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

.card-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.card-highlights-left {
  display: flex;
  justify-content: center;
  position: relative;
}

.card-highlights-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.card-highlights-photo {
  width: 100%;
  height: auto;
  margin: -50px 0;
  border-radius: 80px; /* Rounded crop exactly as seen in design mockup */
  display: block;
  filter: drop-shadow(0 15px 35px rgba(86, 33, 92, 0.1));
}

.card-highlights-badge-overlay {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background-color: var(--color-primary);
  border-radius: 16px;
  padding: 12px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(86, 33, 92, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-primary);
}

.card-badge-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #f7ebf5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-badge-svg {
  color: var(--color-primary);
  width: 12px;
  height: 12px;
}

.card-badge-meta {
  display: flex;
  flex-direction: column;
}

.card-badge-status {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.card-badge-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.2;
}

.card-highlights-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-primary);
}

.card-highlights-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.card-highlights-desc {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--color-graphite-text);
  margin: 0;
}

/* Section 4: Mais praticidade para sua empresa */
.card-pract-section {
  background-color: rgba(227, 203, 223, 0.7);
  padding: 100px 0;
  width: 100%;
}

.card-pract-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

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

.card-pract-left {
  font-family: var(--font-primary);
}

.card-pract-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -1px;
  max-width: 380px;
}

.card-pract-right {
  width: 100%;
}

.card-pract-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.card-pract-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1.5px solid #ebd8e9;
  font-family: var(--font-primary);
}

.card-pract-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.card-pract-item-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
}

.card-pract-item-desc {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-graphite-text);
  margin: 0;
}

/* ==========================================================================
   23. Responsividade da Página Reconhece Card
   ========================================================================== */

@media (max-width: 1199px) {
  .card-hero-title {
    font-size: 2.85rem;
  }
  .card-features-main-title,
  .card-highlights-main-title,
  .card-pract-main-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 991px) {
  .card-hero-section {
    padding: 140px 0 70px;
  }
  .card-hero-grid,
  .card-features-grid,
  .card-highlights-grid,
  .card-pract-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .card-hero-right,
  .card-features-left,
  .card-highlights-right,
  .card-pract-left {
    align-items: center;
    text-align: center;
  }
  .card-features-main-title,
  .card-highlights-main-title,
  .card-pract-main-title {
    margin: 0 auto;
    max-width: 100%;
  }
  .card-feature-item {
    text-align: left;
  }
  .card-highlights-left {
    order: 2;
  }
  .card-highlights-right {
    order: 1;
  }
  .card-highlights-badge-overlay {
    right: 0px;
  }
}

@media (max-width: 576px) {
  .card-hero-title {
    font-size: 2.15rem;
  }
  .card-features-main-title,
  .card-pract-main-title {
    font-size: 1.95rem;
  }
  .card-highlights-main-title {
    font-size: 1.95rem;
    padding-top: 24px;
  }
  .card-highlights-desc {
    margin-bottom: 24px;
  }
  .card-feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .card-highlights-badge-overlay {
    bottom: 20px;
    right: -10px;
    padding: 10px 16px;
  }
}

/* ==========================================================================
   24. Responsividade da Página Plataforma
   ========================================================================== */

@media (max-width: 1199px) {
  .plat-hero-title {
    font-size: 2.85rem;
  }

  .plat-section-title {
    font-size: 2.2rem;
  }

  .plat-moments-grid {
    gap: 16px;
  }

  .plat-moment-capsule {
    height: 350px;
    padding: 24px 16px;
  }

  .plat-moment-name {
    font-size: 1.2rem;
  }

  .plat-corp-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 991px) {
  .plat-hero-section {
    padding: 140px 0 70px;
  }

  .plat-hero-grid {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    gap: 48px;
  }

  .plat-hero-left {
    align-items: center;
  }

  .plat-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .plat-hero-laptop {
    max-width: 85%;
    margin: 0 auto;
  }

  .plat-mgmt-section {
    padding: 70px 0;
  }

  .plat-mgmt-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .plat-mgmt-left {
    justify-content: center;
    text-align: center;
  }

  .plat-manifesto-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .plat-moments-section {
    padding: 80px 0;
  }

  .plat-moments-main-title {
    margin-bottom: 50px;
  }

  .plat-moments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
  }

  .plat-moment-wrapper {
    flex: none;
    width: calc(50% - 12px);
    height: 330px;
  }

  .plat-moment-wrapper.active-highlight {
    flex: none;
    width: 100%;
  }

  .plat-testimonials-section {
    padding: 80px 0;
  }

  .plat-testimonials-header {
    margin-bottom: 50px;
  }

  .plat-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .plat-video-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .plat-bubbles-col {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .plat-corporate-section {
    padding: 80px 0 0;
  }

  .plat-corporate-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .plat-corporate-left {
    padding-bottom: 0;
  }

  .plat-corp-title {
    margin-bottom: 30px;
  }

  .plat-corp-feats {
    align-items: center;
  }

  .plat-corp-feat-item {
    text-align: center;
    align-items: center;
  }

  .plat-corporate-right {
    justify-content: center;
  }

  .plat-corp-megaphone-img {
    margin-top: unset;
    max-width: 75%;
  }

  .plat-closing-section {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .plat-hero-title {
    font-size: 2.2rem;
  }

  .plat-hero-sub {
    font-size: 1.05rem;
  }

  .plat-section-title {
    font-size: 1.85rem;
  }

  .plat-mgmt-index {
    font-size: 1.15rem;
  }

  .plat-mgmt-text {
    font-size: 0.98rem;
  }

  .plat-manifesto-title {
    font-size: 1.75rem;
  }

  .plat-manifesto-desc {
    font-size: 1.05rem;
  }

  .plat-moments-grid {
    flex-direction: column;
    align-items: stretch;
    max-width: 340px;
    margin: 0 auto;
  }

  .plat-moment-wrapper {
    width: 100%;
    height: 280px;
    margin-bottom: 110px; /* Space for the crown to float without hitting the card above */
  }

  .plat-moment-wrapper:last-child {
    margin-bottom: 0;
  }

  .plat-moment-wrapper.active-highlight {
    width: 100%;
    height: 360px;
  }

  .plat-corp-title {
    font-size: 2rem;
  }

  .plat-closing-title {
    font-size: 1.95rem;
  }

  .plat-brands-row {
    justify-content: center;
  }

  .plat-brand-item {
    width: calc(50% - 16px);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .plat-brands-row-large {
    gap: 16px;
    margin-bottom: 30px;
  }

  .plat-brands-row-large .plat-brand-logo-img {
    max-width: 100%;
  }

  .plat-brands-row-small {
    gap: 16px;
    margin-bottom: 16px;
  }

  .plat-brands-row-small .plat-brand-logo-img {
    max-height: unset;
    max-width: 100%;
  }
}

/* ==========================================================================
   25. Reconhece GO Template Styles
   ========================================================================== */

.go-hero-section {
  position: relative;
  background-image: url("../images/bg_section_stat.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 160px 0 110px;
  color: var(--color-primary);
  overflow: hidden;
}

.go-hero-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

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

.go-hero-title {
  color: var(--color-primary);
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.go-hero-sub {
  color: var(--color-graphite-text);
  font-size: 1.25rem;
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 500;
}

.go-hero-img-box {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(86, 33, 92, 0.12);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.go-hero-img-box:hover {
  transform: translateY(-6px) scale(1.01);
}

.go-hero-mockup-img {
  width: 100%;
  height: auto;
  display: block;
}

.go-steps-section {
  padding: 120px 0;
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(86, 33, 92, 0.05);
}

.go-steps-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

.go-steps-two-cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.go-steps-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -1px;
}

.go-steps-right-col {
  width: 100%;
}

.go-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.go-step-list-item {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1.5px solid #ebd8e9; /* Light lavender dividers */
  font-family: var(--font-primary);
}

.go-step-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.go-step-item-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.go-step-item-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-graphite-text);
  font-weight: 400;
}

.go-agility-section {
  padding: 120px 0;
  background-color: #faf5f8; /* Soft lavender background matching mockup section */
}

.go-agility-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

.go-agility-grid-checklist {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.go-agility-main-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: -1px;
}

.go-agility-main-desc {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--color-graphite-text);
  margin-bottom: 40px;
  font-weight: 500;
}

.go-agility-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.go-checklist-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-primary);
}

.go-checklist-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 2px solid #ebd8e9;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(86, 33, 92, 0.03);
}

.go-checklist-svg,
.go-checklist-icon-box .pill-icon {
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 1;
  stroke: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.go-checklist-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
}

.go-calendar-section {
  padding: 120px 0;
  background-color: #ebd8e9; /* Soft pink-purple backdrop exactly like mockup */
}

.go-calendar-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

.go-calendar-main-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 70px;
  letter-spacing: -1px;
}

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

.go-month-card {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(86, 33, 92, 0.04);
  border: 1.5px solid rgba(86, 33, 92, 0.03);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  padding: 0;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

.go-month-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: var(--font-primary);
}

.go-month-card img {
  min-width: 101%;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  max-height: 200px;
  object-fit: cover;
  object-position: center;
  border-top: 1px solid var(--color-primary);
}

.go-month-card .header-month-card {
  text-align: center;
}
.header-month-card h2 {
  font-size: 3rem;
  color: var(--color-graphite-text);
  font-weight: 500;
  margin: 0;
  letter-spacing: -1px;
}

.header-month-card span {
  color: var(--color-graphite-text);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 5px;
}

.go-month-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
}

.go-month-holiday {
  font-size: 0.8rem;
  font-weight: 600;
  color: #7b7182;
  text-align: center;
}

.go-month-brand-container {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

.go-month-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Premium Brand Badge Mockups */
.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.centauro-badge {
  background-color: #e11a22;
  color: var(--color-white);
  font-style: italic;
  font-weight: 900;
  font-size: 0.85rem;
  padding: 6px 16px;
  letter-spacing: -0.5px;
}

.zedelivery-badge {
  background-color: #fbc815;
  color: #000000;
  font-style: italic;
  font-weight: 900;
  font-size: 0.8rem;
  padding: 6px 14px;
}

.vivara-badge {
  background-color: var(--color-white);
  color: #000000;
  font-family: "Georgia", serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  border: 1px solid #000;
  padding: 4px 14px;
  box-shadow: none;
}

.cacaushow-badge {
  background-color: #4a2306;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 6px 12px;
  gap: 6px;
}

.cacaushow-badge .cs-circle {
  font-size: 0.6rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #d1b46a;
  color: #4a2306;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-style: normal;
}

.oboticario-badge {
  background-color: #e5f1ea;
  color: #007a48;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 14px;
  border: 1px solid #b6dbca;
  letter-spacing: 0.5px;
}

.cocobambu-badge {
  background-color: #271408;
  color: #fbb334;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  gap: 4px;
}

.cocobambu-badge .cb-leaf {
  font-style: normal;
  font-size: 0.9rem;
}

.ifood-badge {
  background-color: #ea1d2c;
  color: var(--color-white);
  font-weight: 900;
  font-style: italic;
  font-size: 1.15rem;
  padding: 4px 20px;
  border-radius: 10px;
  letter-spacing: -1px;
}

.netshoes-badge {
  background-color: #562095;
  color: var(--color-white);
  font-weight: 900;
  font-style: italic;
  font-size: 0.85rem;
  padding: 6px 14px;
  letter-spacing: -0.5px;
}

.amazon-badge {
  background-color: var(--color-white);
  color: #000000;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  padding: 2px 10px;
  box-shadow: none;
}

.amazon-badge .amz-arrow {
  position: absolute;
  bottom: -4px;
  left: 20%;
  width: 60%;
  height: 4px;
  background-color: #ff9900;
  border-radius: 50% 50% 0 0;
}

.magalu-badge {
  background-color: #0086ff;
  color: var(--color-white);
  font-weight: 900;
  font-size: 0.9rem;
  padding: 6px 16px;
  letter-spacing: -0.5px;
}

.carrefour-badge {
  background-color: var(--color-white);
  color: #00569e;
  font-weight: 800;
  font-size: 0.82rem;
  border: 1.5px solid #ebd8e9;
  padding: 5px 12px;
  gap: 5px;
}

.carrefour-badge .crf-c {
  font-style: normal;
  color: #e11a22;
  font-weight: 900;
}

.tokstok-badge {
  background-color: #006341;
  color: var(--color-white);
  font-weight: 900;
  font-size: 0.82rem;
  padding: 6px 14px;
  letter-spacing: 0.5px;
}

.go-brands-section {
  padding: 120px 0;
  background-color: var(--color-white);
  text-align: center;
}

.go-brands-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 70px;
  letter-spacing: -1px;
}

.go-brands-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.go-slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(86, 33, 92, 0.12);
  background-color: var(--color-white);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.go-slider-arrow:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: scale(1.08);
}

.arrow-svg {
  width: 22px;
  height: 22px;
}

.go-brands-slider-viewport {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.go-brands-slider-viewport::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.go-brands-grid-slider {
  align-items: center;
  padding: 15px 0;
}

.go-brand-item-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px !important;
  padding: 0 15px;
  transition: var(--transition-smooth);
}

.go-brand-item-slider:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

.go-brand-img {
  max-width: 300px;
  max-height: 300px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1199px) {
  .go-hero-title {
    font-size: 3rem;
  }
  .go-steps-main-title,
  .go-agility-main-title {
    font-size: 2.4rem;
  }
  .go-calendar-months-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .go-hero-section {
    padding: 140px 0 70px;
  }
  .go-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .go-hero-right {
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  .go-hero-title {
    font-size: 2.6rem;
  }
  .go-hero-img-box {
    max-width: 440px;
    margin: 0 auto;
    border-radius: 36px;
  }
  .go-steps-section {
    padding: 80px 0;
  }
  .go-steps-two-cols,
  .go-agility-grid-checklist {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .go-steps-main-title,
  .go-agility-main-title {
    margin: 0 auto;
  }
  .go-step-list-item {
    text-align: left;
  }
  .go-agility-section {
    padding: 80px 0;
  }
  .go-agility-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .go-agility-checklist {
    align-items: flex-start;
  }
  .go-calendar-section {
    padding: 80px 0;
  }
  .go-calendar-main-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }
  .go-calendar-months-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .go-brands-section {
    padding: 80px 0;
  }
  .go-brands-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }
}

@media (max-width: 576px) {
  .go-hero-title {
    font-size: 2.2rem;
  }
  .go-hero-sub {
    font-size: 1.05rem;
  }
  .go-steps-main-title,
  .go-agility-main-title {
    font-size: 1.85rem;
  }
  .go-step-item-title {
    font-size: 1.2rem;
  }
  .go-checklist-text {
    font-size: 1rem;
  }
  .go-calendar-months-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    margin: 0 auto;
    gap: 15px;
  }
  .go-month-card {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .header-month-card h2 {
    font-size: 2.2rem;
  }
  .header-month-card span {
    font-size: 1.2rem;
  }
  .go-month-card img {
    max-height: 130px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
}

/* ==========================================================================
   14. Gamificação de Metas Page Template Styles
   ========================================================================== */
.gam-hero-section {
  position: relative;
  overflow: hidden;
  font-family: var(--font-primary);
}

/* .gam-cycles-section {
  position: relative;
  font-family: var(--font-primary);
} */

.gam-hero-section {
  position: relative;
  background-image: url("../images/bg_section_stat.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 160px 0 100px;
  width: 100%;
  overflow: hidden;
}

.gam-hero-container,
.gam-cycles-container,
.gam-tech-container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 24px;
}

.gam-hero-grid,
.gam-cycles-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.gam-hero-left,
.gam-cycles-right {
  display: flex;
  justify-content: center;
}

.gam-hero-img-box {
  max-width: 380px;
  width: 100%;
  border-radius: 40px;
  transition: var(--transition-smooth);
}

.gam-cycles-mockup-img {
  max-width: 430px;
  width: 100%;
  transition: var(--transition-smooth);
  margin-bottom: -50px;
  z-index: 10;
}

.gam-hero-img-box:hover,
.gam-cycles-img-box:hover {
  transform: translateY(-8px) scale(1.02);
}

.gam-hero-mockup-img,
.gam-cycles-mockup-img {
  width: 100%;
  height: auto;
  display: block;
}

.gam-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gam-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
}

.gam-hero-desc {
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--color-graphite-text);
  margin-bottom: 36px;
  font-weight: 400;
}

.gam-hero-btn {
  background-color: var(--color-tertiary-orange);
  color: var(--color-white);
  padding: 16px 38px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px; /* Pill shape */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(232, 68, 45, 0.25);
  border: none;
  cursor: pointer;
}

.gam-hero-btn:hover {
  background-color: var(--color-tertiary-orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(232, 68, 45, 0.35);
  color: var(--color-white);
}

/* Background outline crown overlays */
.gam-crown-backdrop {
  position: absolute;
  width: 160px;
  height: 160px;
  background-image: url("../images/crown.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

.backdrop-1 {
  right: 8%;
  top: 12%;
  width: 180px;
  height: 180px;
  transform: rotate(15deg);
}

.backdrop-2 {
  right: 14%;
  bottom: 8%;
  width: 130px;
  height: 130px;
  transform: rotate(-10deg);
}

.backdrop-3 {
  left: 6%;
  top: 15%;
  width: 170px;
  height: 170px;
  transform: rotate(-15deg);
}

.backdrop-4 {
  right: 8%;
  bottom: 12%;
  width: 140px;
  height: 140px;
  transform: rotate(20deg);
}

/* Section 2: Ciclos de Metas */
.gam-cycles-section {
  padding: 120px 0 0 0;
  background-image: url("../images/bg_section_purple.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gam-cycles-grid {
  grid-template-columns: 1fr 1fr;
}

.gam-cycles-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gam-cycles-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.gam-cycles-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-graphite-text);
  font-weight: 400;
}

/* Section 3: Tecnologia & Recursos */
.gam-tech-section {
  padding: 120px 0 0;
  background-color: var(--color-white);
  text-align: center;
}

.gam-tech-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.gam-tech-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -1.2px;
  line-height: 1.2;
}

.gam-tech-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--color-graphite-text);
  margin-top: 20px;
  font-weight: 400;
}

.gam-tech-features-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.gam-tech-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gam-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1.5px solid #ebd8e9;
}

.gam-feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.gam-feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 2px solid #ebd8e9;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(86, 33, 92, 0.03);
}

.gam-feature-svg,
.gam-feature-icon-box .pill-icon {
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 1;
  stroke: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gam-feature-text-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gam-feature-item-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
}

.gam-feature-item-desc {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--color-graphite-text);
  margin: 0;
}

/* Decorative Bottom Photos */
.gam-decorative-photos {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 60px;
  position: relative;
  width: 100%;
  height: 200px;
  overflow: visible;
}

.gam-circular-photo-wrapper {
  position: absolute;
  bottom: -40px;
  width: 440px;
  height: 440px;
  z-index: 10;
}

.left-photo {
  left: -200px;
}

.right-photo {
  right: -200px;
}

.gam-photo-circle {
  width: 100%;
  height: 100%;
}

.gam-circle-img {
  width: 100%;
  height: 100%;
  transition: var(--transition-smooth);
}

.gam-photo-circle:hover .gam-circle-img {
  transform: scale(1.06);
}

.gam-crown-overlay {
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: url("../images/crown.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 12;
  filter: drop-shadow(0 4px 8px rgba(251, 179, 52, 0.25));
}

.floating-crown-1 {
  top: -15px;
  right: 35px;
  transform: rotate(15deg);
  animation: gam-float 4s ease-in-out infinite;
}

.floating-crown-2 {
  top: -20px;
  left: 30px;
  transform: rotate(-12deg);
  animation: gam-float-alt 4.5s ease-in-out infinite alternate;
}

@keyframes gam-float {
  0% {
    transform: translateY(0) rotate(15deg);
  }
  50% {
    transform: translateY(-8px) rotate(12deg);
  }
  100% {
    transform: translateY(0) rotate(15deg);
  }
}

@keyframes gam-float-alt {
  0% {
    transform: translateY(0) rotate(-12deg);
  }
  50% {
    transform: translateY(-6px) rotate(-8deg);
  }
  100% {
    transform: translateY(0) rotate(-12deg);
  }
}

/* Custom CTA override background color */
.gam-cta-section {
  background-color: #faf5f8 !important;
}

/* ==========================================================================
   Responsive Breakpoints for Gamificação
   ========================================================================== */
@media (max-width: 1199px) {
  .gam-hero-title {
    font-size: 2.8rem;
  }
  .gam-cycles-title,
  .gam-tech-title {
    font-size: 2.4rem;
  }
  .gam-circular-photo-wrapper {
    width: 180px;
    height: 180px;
    bottom: -30px;
  }
}

@media (max-width: 991px) {
  .gam-hero-section {
    padding: 140px 0 70px;
  }
  .gam-hero-grid,
  .gam-cycles-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .gam-hero-right,
  .gam-cycles-left {
    align-items: center;
    text-align: center;
  }
  .gam-hero-title {
    font-size: 2.5rem;
  }
  .gam-hero-img-box,
  .gam-cycles-img-box {
    max-width: 320px;
  }
  .gam-cycles-section {
    padding: 80px 0;
  }
  .gam-tech-section {
    padding: 80px 0 0;
  }
  .gam-tech-title {
    font-size: 2.2rem;
  }
  .gam-decorative-photos {
    height: 140px;
    margin-top: 40px;
  }
  .gam-circular-photo-wrapper {
    width: 130px;
    height: 130px;
    bottom: -20px;
  }
  .gam-crown-overlay {
    width: 44px;
    height: 44px;
  }
  .floating-crown-1 {
    top: -10px;
    right: 20px;
  }
  .floating-crown-2 {
    top: -12px;
    left: 15px;
  }
}

@media (max-width: 576px) {
  .gam-hero-title {
    font-size: 2.1rem;
  }
  .gam-hero-desc,
  .gam-cycles-desc {
    font-size: 1.05rem;
  }
  .gam-cycles-title,
  .gam-tech-title {
    font-size: 1.85rem;
  }
  .gam-feature-item-title {
    font-size: 1.15rem;
  }
  .gam-feature-item-desc {
    font-size: 0.98rem;
  }
  .gam-feature-item {
    gap: 16px;
  }
  .gam-decorative-photos {
    display: none; /* Hide photos on very small screens to avoid overflow issues */
  }
  .gam-tech-section {
    padding-bottom: 60px;
  }
}

/* Custom Testimonials Mobile Layout */
.plat-video-mobile-desc {
  display: none;
}

@media (max-width: 991px) {
  .plat-video-mobile-desc {
    display: block;
    padding: 24px 8px 4px;
    font-family: var(--font-primary);
    font-size: 1.15rem;
    color: var(--color-primary);
    font-weight: 500;
  }

  .plat-mobile-crown {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }

  .plat-mobile-crown img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .plat-video-mobile-desc p {
    margin: 0;
  }

  .plat-bubbles-col {
    display: none !important;
  }
}
