/* =========================================================
   ARQUIVO DE ESTILOS - GRUPO GESTÃO IN
   VERSÃO 12
   ========================================================= */

:root {
  --azul-escuro: #102a43;
  --amarelo: #f6bd3d;
  --dourado: #F6B650;
  --turquesa: #19a2a2;
  --turquesa-claro: #2FA8A8;
  --rosa: #eb546c;
  --vinho: #91263b;
  --branco: #ffffff;
  --branco-quase: #FFFFF6;
  --cinza-claro: #f8f9fa;
  --verde-whatsapp: #25D366;
  --font-family: 'Kanit', sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--azul-escuro);
  line-height: 1.6;
  background-color: var(--branco);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }
p  { margin-bottom: 16px; }

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   BOTÕES
   ============================================= */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  max-width: 100%;
  word-break: break-word;
}

.btn-whatsapp-hero,
.btn-whatsapp-secondary,
.btn-whatsapp-contact,
.btn-whatsapp-header,
.btn-whatsapp-mobile {
  background-color: var(--verde-whatsapp);
  color: var(--branco);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-hero:hover,
.btn-whatsapp-secondary:hover,
.btn-whatsapp-contact:hover,
.btn-whatsapp-header:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.btn-outline-hero {
  background-color: transparent;
  border: 2px solid var(--azul-escuro);
  color: var(--azul-escuro);
}

.btn-outline-hero:hover {
  background-color: var(--azul-escuro);
  color: var(--branco);
}

.btn-outline-depoimentos {
  background-color: transparent;
  border: 2px solid var(--branco);
  color: var(--branco);
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  max-width: 100%;
}

.btn-outline-depoimentos:hover {
  background-color: var(--branco);
  color: var(--azul-escuro);
}

.btn-fale-conosco {
  background-color: var(--amarelo);
  color: #06284B;
  box-shadow: 0 4px 12px rgba(246, 189, 61, 0.3);
  font-weight: 700;
  padding: 16px 40px;
  transition: all 0.3s ease;
  max-width: 100%;
}

.btn-fale-conosco:hover,
.btn-fale-conosco:active {
  color: var(--branco-quase);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(246, 189, 61, 0.5);
}

.link-inline {
  color: var(--turquesa);
  text-decoration: underline;
  font-weight: 400;
}

.link-inline:hover { color: var(--amarelo); }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--branco);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  width: 100%;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link { display: block; flex-shrink: 0; }

.logo-image {
  height: 80px;
  width: auto;
}

.logo-link:hover { opacity: 0.85; }

.main-nav { display: none; }

.nav-list {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-list a {
  font-size: 15px;
  color: var(--azul-escuro);
  position: relative;
  letter-spacing: 1px;
}

.nav-list a:hover { color: var(--turquesa); }

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--turquesa);
  transition: width 0.3s ease;
}

.nav-list a:hover::after { width: 100%; }

.btn-whatsapp-header {
  display: none;
  padding: 12px 24px;
  font-size: 14px;
  letter-spacing: 1px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
}

.menu-icon {
  width: 28px;
  height: 3px;
  background-color: var(--azul-escuro);
  transition: all 0.3s ease;
}

.menu-toggle.active .menu-icon:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.menu-toggle.active .menu-icon:nth-child(2) { opacity: 0; }
.menu-toggle.active .menu-icon:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

.mobile-nav {
  position: fixed;
  top: 104px;
  right: -100%;
  width: 280px;
  max-width: 90vw;
  height: calc(100vh - 104px);
  background-color: var(--branco);
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  padding: 32px 24px;
  transition: right 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.active { right: 0; }

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cinza-claro);
  color: var(--azul-escuro);
  display: block;
}

.mobile-nav-link:hover { color: var(--turquesa); }

.btn-whatsapp-mobile {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

/* =============================================
   HERO
   ============================================= */
.hero-section {
  padding: 48px 0;
  background-color: var(--branco);
}

.hero-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.hero-content { text-align: center; width: 100%; }

.hero-tagline {
  font-size: 14px;
  font-weight: 700;
  color: var(--turquesa);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 28px;
  color: var(--azul-escuro);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--azul-escuro);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.btn-whatsapp-hero,
.btn-outline-hero { width: 100%; max-width: 100%; }

.trust-badges { display: grid; gap: 10px; margin-bottom: 24px; text-align: left; }

.trust-badges li {
  font-size: 14px;
  color: var(--turquesa);
  padding-left: 24px;
  position: relative;
}

.trust-badges li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amarelo);
  font-weight: 700;
}

.hero-image-mobile { display: block; margin-bottom: 24px; width: 100%; }
.hero-image-desktop { display: none; }

.hero-proof {
  font-size: 14px;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 32px;
  text-align: center;
}

.hero-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.pillar-card {
  background-color: var(--cinza-claro);
  padding: 16px 12px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pillar-icon { color: var(--amarelo); }
.pillar-icon svg { stroke: var(--amarelo); }

.pillar-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--turquesa-claro);
  line-height: 1.3;
}

.hero-image { border-radius: 12px; width: 100%; }

/* =============================================
   PROVA SOCIAL / CONTADORES
   ============================================= */
.social-proof-section {
  background-color: var(--azul-escuro);
  padding: 56px 0;
  width: 100%;
}

.social-proof-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

.social-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-proof-number {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
  flex-wrap: nowrap;
}

.social-proof-number .counter-plus,
.social-proof-number .counter,
.social-proof-number .counter-suffix {
  font-family: var(--font-family);
  font-size: 52px;
  font-weight: 700;
  color: var(--amarelo);
  line-height: 1;
}

.counter-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--branco);
  margin-top: 10px;
  margin-bottom: 0;
  letter-spacing: 0.3px;
}

.social-proof-divider {
  width: 64px;
  height: 2px;
  background-color: var(--turquesa);
  opacity: 0.5;
}

/* =============================================
   PROBLEMAS
   ============================================= */
.problems-section {
  padding: 48px 0;
  background-color: var(--cinza-claro);
  width: 100%;
}

.section-title {
  font-size: 24px;
  text-align: center;
  color: var(--azul-escuro);
  margin-bottom: 16px;
}

.section-title-left { text-align: left; margin-bottom: 24px; }

.section-intro {
  font-size: 16px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  color: var(--azul-escuro);
  line-height: 1.6;
}

.problems-grid { display: grid; gap: 16px; margin-bottom: 32px; }

.problem-card {
  background-color: var(--branco);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 2px solid var(--amarelo);
  transition: all 0.3s ease;
  cursor: pointer;
}

.problem-card:hover,
.problem-card:active { background-color: var(--rosa); }

.problem-card:hover .problem-text,
.problem-card:active .problem-text { color: var(--branco); }

.problem-title { font-size: 17px; color: var(--amarelo); margin-bottom: 10px; }

.problem-text {
  font-size: 15px;
  color: var(--azul-escuro);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.section-transition {
  font-size: 15px;
  text-align: center;
  margin: 32px auto;
  max-width: 700px;
}

.section-transition strong { font-weight: 700; }

/* Texto dourado #F6B650 */
.section-transition-gold {
  color: var(--dourado);
  font-weight: 600;
}

.section-mini-cta { text-align: center; margin-top: 24px; }

/* =============================================
   SERVIÇOS / METODOLOGIA GiN
   ============================================= */
.services-section {
  padding: 48px 0;
  background: linear-gradient(90deg, var(--turquesa) 0%, var(--azul-escuro) 100%);
  color: var(--branco);
  width: 100%;
}

.services-section .section-title { color: var(--branco); }
.services-section .section-intro { color: var(--branco); }

/* Mobile: 1 coluna */
.pillars-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
  width: 100%;
}

.pillar-service-card-new {
  padding: 24px 20px;
  border-radius: 12px;
  background-color: transparent;
  border: 2px solid var(--branco);
  color: var(--branco);
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.pillar-service-card-new h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--amarelo);
  letter-spacing: 0.3px;
  line-height: 1.4;
  word-break: break-word;
}

.bullet-amarelo {
  color: var(--amarelo);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-service-card-new p {
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.6;
  flex: 1;
  word-break: break-word;
}

/* =============================================
   FRAMEWORK — efeito luz dourada animada
   Funciona em mobile, tablet e desktop
   ============================================= */
.framework-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px auto 0;
  width: 100%;
  padding: 0 8px;
}

/* Suporte a @property para animação conic-gradient */
@property --glow-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes golden-spin {
  to { --glow-angle: 360deg; }
}

/* Anel dourado girando ao redor da imagem — mobile/tablet */
.framework-glow-ring {
  position: relative;
  display: inline-block;
  border-radius: 14px;
  padding: 4px;
  background: conic-gradient(
    from var(--glow-angle),
    #F6B650 0%,
    #fde6a8 20%,
    #c47d0a 40%,
    #F6B650 60%,
    #fde6a8 80%,
    #F6B650 100%
  );
  animation: golden-spin 4s linear infinite;
  width: 100%;
  max-width: 430px; /* tamanho padrão mobile/tablet */
  box-shadow:
    0 0 10px 2px rgba(246, 182, 80, 0.40),
    0 0 24px 4px rgba(246, 182, 80, 0.20);
}

/* Camada interna que "tampa" o centro deixando só a borda brilhar */
.framework-glow-ring::before {
  content: '';
  position: absolute;
  inset: 4px; /* mesma espessura do padding */
  border-radius: 10px;
  background: transparent;
  z-index: 0;
}

.framework-image {
  display: block;
  width: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

/* Fallback: browsers sem suporte a @property */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .framework-glow-ring {
    animation: golden-pulse-fallback 2s ease-in-out infinite;
    background: linear-gradient(135deg, #F6B650, #fde6a8, #c47d0a, #F6B650);
  }

  @keyframes golden-pulse-fallback {
    0%, 100% { box-shadow: 0 0 8px 2px rgba(246,182,80,0.5); }
    50%       { box-shadow: 0 0 20px 6px rgba(246,182,80,0.85); }
  }
}

/* =============================================
   SERVIÇOS — continuação
   ============================================= */
.services-cta-center {
  text-align: center;
  margin-top: 56px;
  margin-bottom: 48px;
}

.section-divider {
  width: 80px;
  height: 2px;
  background-color: var(--amarelo);
  margin: 40px auto;
}

.services-cta-title {
  font-size: 22px;
  text-align: center;
  margin-bottom: 32px;
  color: var(--branco);
}

/* 3 fases — mobile: 1 coluna */
.detailed-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
  justify-items: center;
  width: 100%;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--turquesa);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 420px;
  min-width: 0;
}

.fase-titulo { font-size: 18px; color: #102A43 !important; margin-bottom: 14px; }

.service-bullets { list-style: none; padding: 0; margin-bottom: 16px; }

.service-bullets li {
  font-size: 15px;
  color: var(--branco-quase);
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 246, 0.2);
  word-break: break-word;
}

.service-bullets li:last-child { border-bottom: none; }

.service-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--branco-quase);
  font-weight: 700;
  font-size: 18px;
}

/* Textos descritivos das fases — Kanit Normal, turquesa */
.service-ideal {
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  color: #19A2A2;
  background-color: rgba(248, 249, 250, 0.85);
  padding: 12px;
  border-radius: 6px;
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.6;
}

.section-cta-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

/* =============================================
   HISTÓRIA
   ============================================= */
.history-section {
  padding: 48px 0;
  background-color: var(--cinza-claro);
  width: 100%;
}

.history-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 0;
  width: 100%;
}

.history-text p { font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.history-text strong { font-weight: 700; }

.history-image-wrapper { display: block; width: 100%; }
.history-image-wrapper a { display: block; cursor: pointer; }

.history-image {
  border-radius: 12px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-image-wrapper a:hover .history-image {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.history-spacer { height: 72px; }

.pmv-box {
  background-color: var(--azul-escuro);
  color: var(--branco);
  padding: 28px 20px;
  border-radius: 12px;
  text-align: center;
}

.pmv-purpose { font-size: 22px; color: var(--amarelo); margin-bottom: 16px; }
.pmv-text    { font-size: 15px; opacity: 0.9; margin-bottom: 24px; }

/* Espaçador desktop — oculto em mobile/tablet */
.pmv-spacer-desktop { display: none; }

.pmv-columns { display: grid; gap: 20px; margin-bottom: 24px; }

.pmv-item h4 { font-size: 17px; color: var(--turquesa); margin-bottom: 8px; }
.pmv-item p  { font-size: 15px; margin-bottom: 0; }
.pmv-cta     { margin-top: 32px; }

/* =============================================
   DEPOIMENTOS
   ============================================= */
.testimonials-section {
  padding: 48px 0;
  background-color: var(--branco);
  width: 100%;
}

.testimonials-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 0; /* espaçamento controlado pelo spacer abaixo */
}

.testimonial-card {
  background-color: var(--cinza-claro);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-stars { color: var(--amarelo); font-size: 18px; margin-bottom: 12px; }

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author { font-size: 13px; margin-bottom: 0; }
.testimonial-author strong { font-weight: 700; color: var(--azul-escuro); }

/* Espaçador entre depoimentos em texto e vídeos */
.video-section-spacer { height: 40px; }

/* -------------------------------------------------
   VÍDEOS — MOBILE: 2 colunas lado a lado
   Tablet e desktop: mantidos como na V11
   ------------------------------------------------- */

/* Mobile (base): 2 colunas, centralizadas */
.video-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 colunas em TODOS os tamanhos */
  gap: 12px;
  width: 100%;
  margin: 0 auto;
}

.video-testimonial-item {
  background-color: var(--cinza-claro);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

/* Proporção retrato 9:16 */
.video-portrait-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
  background-color: #000;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.testimonial-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000;
  display: block;
  -webkit-playsinline: true;
}

.video-author {
  padding: 10px 12px;
  margin-bottom: 0;
  font-size: 12px; /* fonte menor para caber nas 2 colunas no mobile */
}

/* =============================================
   CONTATO
   ============================================= */
.contact-section {
  padding: 48px 0;
  background-color: var(--cinza-claro);
  width: 100%;
}

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
  width: 100%;
}

.contact-image-wrapper { width: 100%; }
.contact-image { width: 100%; border-radius: 12px; }
.contact-content { text-align: center; width: 100%; }

.btn-whatsapp-contact {
  width: 100%;
  max-width: 400px;
  margin: 24px auto;
  display: block;
  padding: 18px 24px;
  font-size: 16px;
}

.contact-benefits { list-style: none; padding: 0; margin: 24px 0; text-align: center; }

.contact-benefits li {
  font-size: 15px;
  font-weight: 400;
  color: var(--turquesa-claro);
  margin-bottom: 8px;
}

.contact-benefits li::before {
  content: '• ';
  color: var(--turquesa-claro);
  font-weight: 700;
}

.contact-divider {
  width: 80%;
  height: 1px;
  background-color: var(--turquesa);
  opacity: 0.3;
  margin: 32px auto;
}

.contact-details { display: grid; gap: 24px; text-align: left; width: 100%; }

.contact-column h3 { font-size: 15px; color: var(--azul-escuro); margin-bottom: 8px; }
.contact-column p  { font-size: 14px; line-height: 1.8; }

.contact-column a {
  color: var(--turquesa);
  text-decoration: underline;
  word-break: break-all;
}

.contact-column a:hover { color: var(--amarelo); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background-color: var(--azul-escuro);
  color: var(--branco);
  padding: 40px 0 20px;
  width: 100%;
}

.footer-container { display: grid; gap: 28px; margin-bottom: 24px; }

.footer-logo { width: 160px; margin-bottom: 12px; max-width: 100%; }

.footer-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--amarelo);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: var(--branco); line-height: 1.8; }
.footer-links a:hover { color: var(--amarelo); }

.footer-text { font-size: 12px; opacity: 0.7; line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  margin-top: 24px;
}

.footer-copy { font-size: 12px; text-align: center; opacity: 0.7; margin-bottom: 0; }
.footer-copy a { color: var(--branco); text-decoration: underline; }
.footer-copy a:hover { color: var(--amarelo); }

/* =============================================
   WHATSAPP FLUTUANTE
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 52px;
  height: 52px;
  background-color: var(--verde-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.whatsapp-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon-img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.75); }
}

/* =============================================
   TABLET — min-width: 600px
   ============================================= */
@media (min-width: 600px) {

  .hero-title { font-size: 32px; }
  .hero-pillars { grid-template-columns: 1fr 1fr; }

  .social-proof-inline { flex-direction: row; gap: 48px; }
  .social-proof-divider { width: 2px; height: 70px; }
  .social-proof-number .counter-plus,
  .social-proof-number .counter,
  .social-proof-number .counter-suffix { font-size: 56px; }

  .problems-grid { grid-template-columns: 1fr 1fr; }

  .pillars-grid-new { grid-template-columns: repeat(2, 1fr); }

  /* Vídeos tablet: 2 colunas com gap maior, fonte normal */
  .video-testimonials-grid {
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
  }

  .video-author { font-size: 13px; padding: 14px 16px; }

  .pmv-columns { grid-template-columns: 1fr 1fr; }
  .contact-details { grid-template-columns: 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   TABLET MAIOR — min-width: 768px
   ============================================= */
@media (min-width: 768px) {

  .logo-image { height: 115px; }
  .mobile-nav { top: 139px; height: calc(100vh - 139px); }

  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .section-title { font-size: 28px; }
  .hero-title { font-size: 40px; }

  .hero-image-mobile { display: none; }
  .hero-image-desktop { display: block; }

  .hero-cta-group { flex-direction: row; justify-content: center; }
  .btn-whatsapp-hero,
  .btn-outline-hero { width: auto; min-width: 220px; }

  .trust-badges { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .video-testimonials-grid { max-width: 800px; }
  .video-section-spacer { height: 48px; }
}

/* =============================================
   DESKTOP — min-width: 1024px
   ============================================= */
@media (min-width: 1024px) {

  .container { padding: 0 20px; }
  .logo-image { height: 115px; }

  .main-nav { display: block; }
  .btn-whatsapp-header { display: inline-block; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none; }

  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  .section-title { font-size: 28px; }

  .hero-section { padding: 80px 0; }
  .hero-container { flex-direction: row; align-items: center; }
  .hero-content { flex: 1; text-align: left; }
  .hero-title { font-size: 48px; }
  .hero-subtitle { font-size: 18px; }
  .hero-cta-group { justify-content: flex-start; }
  .trust-badges { text-align: left; grid-template-columns: 1fr 1fr; }
  .hero-image-mobile { display: none; }
  .hero-image-desktop { display: block; flex: 1; }
  .hero-proof { text-align: left; }
  .hero-pillars { grid-template-columns: repeat(4, 1fr); }

  .social-proof-inline { flex-direction: row; gap: 80px; max-width: 640px; }
  .social-proof-divider { width: 2px; height: 80px; }
  .social-proof-number .counter-plus,
  .social-proof-number .counter,
  .social-proof-number .counter-suffix { font-size: 60px; }

  .section-intro { margin-bottom: 48px; }
  .problems-grid { grid-template-columns: repeat(3, 1fr); margin-bottom: 48px; }

  .pillars-grid-new {
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
  }

  .pillar-service-card-new h3 { font-size: 16px; }
  .pillar-service-card-new p  { font-size: 16px; }

  /* Framework desktop: 75% menor = max-width: 25% do container (≈300px) */
  .framework-glow-ring {
    max-width: 420px; /* redimensionado para 420px (+40% sobre 300px) */
  }
  
  /* Fonte maior para o texto "Desde 2019..." somente no desktop */
.section-transition-gold {
  font-size: 18px;
  font-style: extralight;
}

  .detailed-services {
    grid-template-columns: repeat(3, 1fr);
    justify-items: stretch;
  }

  .service-card { max-width: 100%; }
  .fase-titulo  { font-size: 20px; }

  .history-section { padding: 60px 0; }
  .history-grid { flex-direction: row; align-items: flex-start; }
  .history-text { flex: 1; }
  .history-image-wrapper { display: block; flex: 1; }

  /* PMV desktop */
  .pmv-box { padding: 40px 48px; }

  .pmv-spacer-desktop {
    display: block;
    height: 32px;
  }

  .pmv-columns {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 800px;
    margin: 0 auto 24px;
  }

  .pmv-item { text-align: left; }
  .pmv-item h4 { font-size: 19px; }
  .pmv-item p  { font-size: 16px; }

  /* Depoimentos desktop */
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

  .video-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    gap: 24px;
  }

  .video-author { font-size: 14px; padding: 14px 16px; }
  .video-section-spacer { height: 56px; }

  /* Contato */
  .contact-section { padding: 60px 0; }
  .contact-layout { flex-direction: row; align-items: center; }
  .contact-image-wrapper { flex: 0 0 42.5%; }
  .contact-image { width: 85%; }

  .contact-content {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
  }

  .contact-content .section-title { margin-bottom: 24px; }
  .btn-whatsapp-contact { margin: 24px auto; font-size: 18px; }
  .contact-benefits li { margin-bottom: 12px; }
  .contact-details { grid-template-columns: repeat(3, 1fr); }
  .footer-container { grid-template-columns: repeat(4, 1fr); }

  .whatsapp-float { bottom: 30px; right: 30px; width: 60px; height: 60px; }
  .whatsapp-icon-img { width: 36px; height: 36px; }
}
