/* ==================== ROOT / VARIÁVEIS ==================== */
:root {
  /* Paleta */
  --cor-primaria: #D4922A;
  --cor-secundaria: #1C2B4A;
  --cor-fundo: #F5F0E8;
  --cor-texto: #2A2A2A;
  --cor-detalhe: #E8D5B0;
  --cor-branco: #FFFFFF;
  --ck-accent: var(--cor-primaria);

  /* Tipografia */
  --fonte-heading: 'Playfair Display', Georgia, serif;
  --fonte-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Espaçamentos */
  --espaco-xs: 0.5rem;
  --espaco-sm: 1rem;
  --espaco-md: 2rem;
  --espaco-lg: 4rem;
  --espaco-xl: 6rem;

  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;

  /* Transições */
  --transicao-rapida: 200ms ease;
  --transicao-media: 300ms ease;
  --transicao-lenta: 500ms ease;

  /* Sombras */
  --sombra-suave: 0 4px 24px rgba(28, 43, 74, 0.08);
  --sombra-media: 0 8px 32px rgba(28, 43, 74, 0.12);
}

/* ==================== RESET / BASE ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--fonte-body);
  color: var(--cor-texto);
  background: var(--cor-fundo);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ==================== UTILITÁRIOS ==================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-header {
  text-align: center;
  margin-bottom: var(--espaco-lg);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--fonte-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cor-primaria);
  margin-bottom: var(--espaco-sm);
}

.section-title {
  font-family: var(--fonte-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--cor-secundaria);
  line-height: 1.2;
  margin-bottom: var(--espaco-sm);
}

.section-lead {
  font-size: 1.125rem;
  color: var(--cor-texto);
  opacity: 0.75;
  max-width: 640px;
  margin: 0 auto;
}

/* ==================== BOTÕES ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--fonte-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  transition: all var(--transicao-media);
  cursor: pointer;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--cor-primaria);
  color: var(--cor-branco);
  border: 2px solid var(--cor-primaria);
}

.btn-primary:hover {
  background: #AA7522;
  border-color: #AA7522;
}

.btn-outline {
  background: transparent;
  color: var(--cor-branco);
  border: 2px solid var(--cor-branco);
}

.btn-outline:hover {
  background: var(--cor-branco);
  color: var(--cor-secundaria);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--cor-branco);
  border: 2px solid #25D366;
  font-size: 1rem;
  padding: 1rem 2rem;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
}

.btn-maps {
  margin-top: var(--espaco-sm);
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transicao-media);
}

.navbar.scrolled {
  background: rgba(28, 43, 74, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.75rem 0;
  box-shadow: var(--sombra-suave);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--espaco-sm);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 58px;
  width: auto;
  display: block;
  transition: height var(--transicao-media);
}

.navbar.scrolled .logo-img {
  height: 60px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transicao-rapida);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cor-primaria);
  transition: width 250ms ease;
}

.nav-link:hover {
  color: var(--cor-branco);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cor-primaria);
  color: var(--cor-branco);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 4px;
  transition: background var(--transicao-media);
}

.nav-cta:hover {
  background: var(--cor-detalhe);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cor-branco);
  transition: all 300ms ease;
  border-radius: 2px;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cor-secundaria);
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 43, 74, 0.95) 0%, rgba(28, 43, 74, 0.8) 40%, rgba(212, 146, 42, 0.2) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--espaco-xl);
  padding-top: 4rem;
  padding-bottom: 3rem;
}

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

.hero-eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cor-primaria);
  margin-bottom: var(--espaco-sm);
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--cor-primaria);
  align-self: center;
}

.hero-title {
  font-family: var(--fonte-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--cor-branco);
  line-height: 1.15;
  margin-bottom: var(--espaco-sm);
  opacity: 0;
  transform: translateX(-40px);
  animation: heroTitle 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform, opacity;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-bottom: var(--espaco-md);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: heroSubtitle 600ms ease-out 200ms forwards;
  will-change: transform, opacity;
}

.hero-cta-group {
  display: flex;
  gap: var(--espaco-sm);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroCta 500ms ease-out 400ms forwards;
  will-change: transform, opacity;
}

.hero-badge {
  opacity: 0;
  transform: scale(0.8);
  animation: heroBadge 500ms cubic-bezier(0.34, 1.56, 0.64, 1) 600ms forwards;
  will-change: transform, opacity;
}

.badge-inner {
  background: rgba(212, 146, 42, 0.15);
  border: 1px solid rgba(212, 146, 42, 0.4);
  backdrop-filter: blur(8px);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.badge-crp {
  display: block;
  font-family: var(--fonte-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cor-primaria);
}

.badge-text {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

/* ==================== ANIMAÇÕES KEYFRAMES ==================== */
@keyframes heroTitle {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes heroBadge {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==================== VOCÊ NÃO ESTÁ SOZINHO (REFINADO PREMIUM) ==================== */
.section-dor-refined {
  padding: var(--espaco-xl) 0;
  background: var(--cor-fundo);
  position: relative;
}

.dor-header-refined {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--espaco-xl);
}

.dor-grid-refined {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.dor-card-refined {
  background: var(--cor-branco);
  border: 1px solid rgba(212, 146, 42, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.dor-card-refined:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(28, 43, 74, 0.08);
  border-color: var(--cor-primaria);
}

.dor-card-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.dor-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.dor-card-refined:hover .dor-card-image img {
  transform: scale(1.1);
}

.dor-card-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--cor-primaria);
  color: var(--cor-branco);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.25rem;
}

.dor-card-body {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.dor-card-h3 {
  font-family: var(--fonte-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cor-secundaria);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.dor-card-p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--cor-texto);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.dor-card-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cor-fundo);
}

.footer-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cor-primaria);
  margin-bottom: 0.5rem;
}

.dor-card-footer p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cor-secundaria);
  line-height: 1.4;
}

/* Responsividade Refinado */
@media (max-width: 1024px) {
  .dor-grid-refined {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .dor-grid-refined {
    grid-template-columns: 1fr;
  }
  
  .dor-card-image {
    height: 250px;
  }
}




/* ==================== NOSSOS EIXOS DE ATUAÇÃO (EDITORIAL PREMIUM) ==================== */
.section-eixos-premium {
  padding: var(--espaco-xl) 0;
  background: var(--cor-fundo);
  position: relative;
  overflow: hidden;
}

/* Linha de tensão visual premium */
.section-eixos-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, var(--cor-primaria), transparent);
  opacity: 0.4;
}

.eixos-header-premium {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: flex-end;
  gap: var(--espaco-lg);
  margin-bottom: var(--espaco-xl);
  position: relative;
  z-index: 2;
}

.eixos-title-wrapper {
  position: relative;
}

.eixos-lead-wrapper {
  max-width: 480px;
}

.section-eixos-premium .ultra-lead {
  color: var(--cor-secundaria);
  opacity: 0.85;
}

.section-eixos-premium .ultra-title {
  color: var(--cor-secundaria);
}

.eixos-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.eixo-card-premium {
  background: var(--cor-branco);
  border: 1px solid rgba(28, 43, 74, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.eixo-card-premium::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--cor-primaria);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.eixo-card-premium:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(28, 43, 74, 0.12);
}

.eixo-card-premium:hover::after {
  opacity: 1;
  transform: scale(1.02);
}

.eixo-card-visual {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.eixo-number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--fonte-heading);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  z-index: 2;
  line-height: 0.8;
  letter-spacing: -0.05em;
  transition: transform 0.6s ease;
}

.eixo-card-premium:hover .eixo-number {
  transform: translateY(-5px) scale(1.1);
  color: rgba(255, 255, 255, 0.25);
}

.eixo-image-container {
  width: 100%;
  height: 100%;
}

.eixo-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.eixo-card-premium:hover .eixo-image-container img {
  transform: scale(1.1);
}

.eixo-card-info {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.eixo-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cor-primaria);
  margin-bottom: 1.25rem;
  display: block;
}

.eixo-card-title {
  font-family: var(--fonte-heading);
  font-size: 1.75rem;
  line-height: 1.1;
  color: var(--cor-secundaria);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.eixo-card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--cor-texto);
  opacity: 0.7;
  margin-bottom: 2rem;
  position: relative;
}

.eixo-card-text::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--cor-primaria);
  transition: width 0.4s ease;
}

.eixo-card-premium:hover .eixo-card-text::after {
  width: 60px;
}

.eixo-list {
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
}

.eixo-list li {
  font-size: 0.875rem;
  color: var(--cor-secundaria);
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
  position: relative;
}

.eixo-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--cor-primaria);
  border-radius: 50%;
}

.eixo-cta {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cor-secundaria);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transicao-rapida);
}

.eixo-cta .arrow {
  color: var(--cor-primaria);
  font-size: 1.2rem;
  transition: transform var(--transicao-rapida);
}

.eixo-cta:hover {
  color: var(--cor-primaria);
}

.eixo-cta:hover .arrow {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .eixos-header-premium {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .eixos-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .eixos-grid-premium {
    grid-template-columns: 1fr;
  }
  
  .ultra-title {
    font-size: 3rem;
  }
}

/* ==================== MARQUEE ==================== */
.marquee-wrapper {
  background: var(--cor-secundaria);
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--cor-secundaria), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--cor-secundaria), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  will-change: transform;
}

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

.marquee-item {
  font-family: var(--fonte-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cor-detalhe);
  padding: 0 0.5rem;
}

.marquee-sep {
  color: var(--cor-primaria);
  font-size: 1.25rem;
  padding: 0 0.75rem;
  opacity: 0.5;
}

/* ==================== ENCANTAMENTO / GALERIA ==================== */
/* ==================== ENCANTAMENTO / GALERIA (ULTRA-PREMIUM) ==================== */
.section-encantamento-ultra {
  padding: var(--espaco-xl) 0;
  background: #0a111f; /* Navy profundo quase preto */
  color: var(--cor-branco);
  position: relative;
  overflow: hidden;
}

/* Grão de textura para sensação de papel/filme */
.grain-overlay {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

.vertical-tension-line {
  position: absolute;
  top: 0;
  left: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(212, 146, 42, 0.2), transparent);
  z-index: 1;
}

.encantamento-header-ultra {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--espaco-lg);
  margin-bottom: var(--espaco-xl);
  position: relative;
  z-index: 2;
}

.ultra-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--cor-primaria);
  margin-bottom: 1rem;
}

.ultra-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--cor-primaria);
  opacity: 0.6;
}

.ultra-title {
  font-family: var(--fonte-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.85;
  font-weight: 800;
  color: var(--cor-branco);
}

.italic-serif {
  font-style: italic;
  font-weight: 400;
  color: var(--cor-primaria);
  display: block;
  margin-left: 2rem;
}

.ultra-lead {
  max-width: 380px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  border-left: 2px solid var(--cor-primaria);
  padding-left: 1.5rem;
}

/* Galeria Ultra Assimétrica */
.galeria-ultra {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 350px);
  gap: 2rem;
  margin-bottom: var(--espaco-xl);
  position: relative;
  z-index: 2;
}

.ultra-card {
  position: relative;
}

.card-number {
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  font-family: var(--fonte-heading);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(212, 146, 42, 0.07);
  z-index: 1;
  pointer-events: none;
}

.ultra-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: #000;
}

.ultra-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.1);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.ultra-card:hover .ultra-card-inner img {
  transform: scale(1.1) rotate(1deg);
  filter: grayscale(0%) contrast(1);
}

.ultra-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 17, 31, 0.95) 0%, transparent 70%);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ultra-card:hover .ultra-overlay {
  opacity: 1;
}

.ultra-tag {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cor-primaria);
  font-weight: 800;
  margin-bottom: 0.75rem;
  display: block;
}

.ultra-card h3 {
  font-family: var(--fonte-heading);
  font-size: 1.75rem;
  color: var(--cor-branco);
  margin-bottom: 0.5rem;
}

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

/* Posicionamento Experimental do Grid */
.card-main { grid-column: 1 / 6; grid-row: 1 / 3; }
.card-secondary { grid-column: 6 / 10; grid-row: 1 / 2; }
.card-tertiary { grid-column: 10 / 13; grid-row: 1 / 2; }
.card-featured { grid-column: 6 / 13; grid-row: 2 / 3; }

/* Vídeo Ultra Featured */
.section-video-ultra {
  padding: var(--espaco-xl) 0;
  background: #080d16; /* Ligeiramente mais escuro que a galeria para separação */
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.video-section-header-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 2;
}

.ultra-video-title-large {
  font-family: var(--fonte-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  color: var(--cor-branco);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.ultra-video-title-large span {
  color: var(--cor-primaria);
  font-style: italic;
  font-weight: 400;
}

.ultra-video-lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}



/* Video Gallery Vertical - IMPACTO MÁXIMO */
.video-gallery-vertical {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1400px; /* Aumentado para permitir vídeos maiores */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.video-card-v-item {
  perspective: 2000px;
}

.v-card-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #000;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
}

.video-card-v-item:hover .v-card-wrapper {
  transform: translateY(-30px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 60px 120px rgba(212, 146, 42, 0.25);
  border-color: rgba(212, 146, 42, 0.5);
}

.v-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1);
  transition: all 0.8s ease;
}

.video-card-v-item:hover .v-video {
  filter: brightness(1.1) contrast(1);
  transform: scale(1.1);
}

.v-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 40%, transparent 100%);
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(10px);
}

.video-card-v-item:hover .v-card-overlay {
  transform: translateY(0);
}

.v-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--cor-primaria);
  font-weight: 800;
  display: block;
  margin-bottom: 0.75rem;
}

.v-card-overlay h3 {
  font-family: var(--fonte-heading);
  font-size: 1.75rem;
  color: var(--cor-branco);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* Custom Video Controls */
.v-card-controls {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 10;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card-v-item:hover .v-card-controls {
  opacity: 1;
  transform: translateX(0);
}

.v-control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 17, 31, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--cor-branco);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.v-control-btn:hover {
  background: var(--cor-primaria);
  border-color: var(--cor-primaria);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(212, 146, 42, 0.4);
}

.v-control-btn i {
  font-size: 1rem;
}

/* Video Modal Premium Pop */
.v-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.v-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.v-modal-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10, 17, 31, 0.7) 0%, rgba(5, 8, 15, 0.98) 100%);
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
}

.v-modal-content {
  position: relative;
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.98) translateY(10px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.2s ease;
}

.v-modal.open .v-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.v-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2100;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 17, 31, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
}

.v-modal-close:hover {
  background: var(--cor-primaria);
  color: #fff;
  transform: scale(1.1) rotate(90deg);
  border-color: var(--cor-primaria);
}

.v-modal-video-wrapper {
  position: relative;
  border-radius: 24px; /* Bordas arredondadas solicitadas */
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 146, 42, 0.15);
}

.v-modal-video {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: 24px; /* Bordas arredondadas solicitadas */
}

/* Info Overlay Minimalista */
.v-modal-info-overlay {
  position: absolute;
  top: -4rem;
  left: 0;
  width: 100%;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}

.v-modal.open .v-modal-info-overlay {
  opacity: 1;
  transform: translateY(0);
}

.v-modal-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--cor-primaria);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.v-modal-title {
  font-family: var(--fonte-heading);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cor-branco);
  margin: 0;
}

/* Loader Minimalista */
.v-modal-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 5;
  pointer-events: none;
}

.v-loader {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid var(--cor-primaria);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Responsividade Vertical */
.v-modal-content.vertical .v-modal-video {
  height: 80vh;
  width: auto;
  aspect-ratio: 9 / 16;
}

/* Play Button Minimalista */
.v-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.video-card-v-item:hover .v-play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(212, 146, 42, 0.9);
  border-color: var(--cor-primaria);
  box-shadow: 0 0 40px rgba(212, 146, 42, 0.4);
}

.v-play-button i {
  font-size: 1.25rem;
  margin-left: 4px;
}

/* Ocultar o play quando estiver tocando */
.v-card-wrapper.playing .v-play-button {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  pointer-events: none;
}

@media (max-width: 768px) {
  .v-modal-info-overlay {
    top: auto;
    bottom: -4rem;
  }
  
  .v-modal-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
}


@media (max-width: 1100px) {
  .video-gallery-vertical {
    gap: 2rem;
  }
}

@media (max-width: 991px) {
  .encantamento-header-ultra {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .galeria-ultra {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .card-main, .card-secondary, .card-tertiary, .card-featured {
    grid-column: span 1;
    grid-row: span 1;
    height: 400px;
  }

  /* Nova responsividade para Vídeos 9:16 */
  .video-gallery-vertical {
    grid-template-columns: 1fr;
    max-width: 450px;
    gap: 3rem;
  }

  .video-section-header-centered {
    padding: 0 1rem;
  }



  .ultra-video-title-large {
    font-size: 2.75rem;
  }
}

@media (max-width: 991px) {
  .encantamento-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--espaco-sm);
  }
  
  .galeria-premium {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  
  .card-large {
    grid-row: span 1;
  }
  
  .card-wide {
    grid-column: span 2;
  }
  
  .video-featured-premium {
    grid-template-columns: 1fr;
    gap: var(--espaco-lg);
  }
}

@media (max-width: 576px) {
  .galeria-premium {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .card-wide {
    grid-column: span 1;
  }
  
  .video-title-premium {
    font-size: 1.75rem;
  }
}

/* ==================== SOBRE / CREDENCIAIS (PREMIUM) ==================== */
.section-sobre {
  padding: var(--espaco-xl) 0;
  background: #fdfaf5; /* Tom de creme mais sofisticado */
  position: relative;
  overflow: hidden;
}

.decorative-text {
  position: absolute;
  top: 10%;
  right: -5%;
  font-family: var(--fonte-heading);
  font-size: 25vw;
  font-weight: 900;
  color: rgba(212, 146, 42, 0.03);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
  user-select: none;
}

.sobre-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--espaco-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Imagem com Shape Decorativo */
.sobre-imagem {
  position: relative;
}

.imagem-wrapper {
  position: relative;
  padding-left: 2rem;
}

.imagem-shape {
  position: absolute;
  top: -2rem;
  left: 0;
  width: 80%;
  height: 90%;
  background: var(--cor-detalhe);
  opacity: 0.3;
  z-index: -1;
  border-radius: 4px;
}

.imagem-sticky {
  border-radius: 2px; /* Layout mais editorial usa bordas retas ou quase retas */
  overflow: hidden;
  box-shadow: 20px 20px 60px rgba(28, 43, 74, 0.1);
  background: var(--cor-secundaria);
}

.imagem-sticky img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: grayscale(10%) contrast(105%);
}

.imagem-experience {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--cor-secundaria);
  color: var(--cor-branco);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  box-shadow: var(--sombra-media);
}

.exp-number {
  font-family: var(--fonte-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--cor-primaria);
}

.exp-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 0.5rem;
  opacity: 0.8;
}

/* Texto e Tipografia */
.sobre-titulo-premium {
  font-family: var(--fonte-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.9;
  font-weight: 800;
  color: var(--cor-secundaria);
  margin-bottom: var(--espaco-md);
}

.sobre-titulo-premium span {
  color: var(--cor-primaria);
  display: block;
  margin-left: 1.5rem;
}

.sobre-role-premium {
  font-family: var(--fonte-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cor-secundaria);
  opacity: 0.6;
  margin-bottom: var(--espaco-lg);
  padding-left: 4px;
}

.sobre-body-premium {
  max-width: 540px;
}

.lead-text {
  font-family: var(--fonte-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cor-secundaria);
  margin-bottom: var(--espaco-md);
  line-height: 1.4;
  position: relative;
  padding-left: 2rem;
}

.lead-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 4rem;
  color: var(--cor-primaria);
  opacity: 0.2;
  line-height: 1;
}

.sobre-body-premium p:not(.lead-text) {
  font-size: 1.05rem;
  color: var(--cor-texto);
  opacity: 0.85;
  margin-bottom: var(--espaco-sm);
  line-height: 1.8;
}

.sobre-assinatura {
  margin-top: var(--espaco-md);
  padding-top: var(--espaco-md);
  border-top: 1px solid rgba(212, 146, 42, 0.2);
}

.assinatura-nome {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cor-secundaria);
}

.assinatura-cargo {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cor-primaria);
  font-weight: 700;
}

/* Counters Refinados */
.sobre-counters-premium {
  display: flex;
  gap: var(--espaco-lg);
  margin-top: var(--espaco-lg);
}

.counter-box {
  display: flex;
  flex-direction: column;
}

.counter-val {
  font-family: var(--fonte-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--cor-secundaria);
  line-height: 1;
  display: flex;
  align-items: center;
}

.counter-number {
  color: var(--cor-secundaria);
}

.counter-suffix {
  color: var(--cor-primaria);
  font-size: 1.5rem;
  margin-left: 2px;
}

.counter-lab {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cor-texto);
  opacity: 0.5;
  margin-top: 0.5rem;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .sobre-container {
    grid-template-columns: 1fr;
    gap: var(--espaco-xl);
  }
  
  .sobre-imagem {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .imagem-wrapper {
    padding-left: 0;
  }
  
  .sobre-titulo-premium {
    font-size: 4rem;
  }
}

@media (max-width: 576px) {
  .sobre-counters-premium {
    flex-wrap: wrap;
    gap: var(--espaco-md);
  }
  
  .imagem-experience {
    padding: 1.25rem;
    min-width: 120px;
    bottom: -1rem;
    right: -1rem;
  }
  
  .exp-number {
    font-size: 2rem;
  }
  
  .sobre-titulo-premium {
    font-size: 3rem;
  }
}

/* ==================== DEPOIMENTOS (EDITORIAL PREMIUM CENTRALIZADO) ==================== */
.section-depoimentos-premium {
  padding: 1rem 0; /* Reduzido para 1rem */
  background: var(--cor-fundo);
  position: relative;
  overflow: hidden;
}

.depoimentos-header-centered {
  text-align: center;
  margin-top: 2.5rem; /* Aumentado */
  margin-bottom: 1.5rem; /* Reduzido para aproximar o carrossel */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.depoimentos-header-centered .ultra-title {
  color: var(--cor-secundaria);
  margin-bottom: 0.75rem; /* Reduzido */
}

.depoimentos-header-centered .ultra-lead {
  max-width: 600px;
  color: var(--cor-texto);
  opacity: 0.8;
  margin-bottom: 0;
}

.depoimentos-main-content-centered {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem; /* Reduzido para aproximar o botão */
}

.depoimentos-carousel-premium {
  position: relative;
  width: 100%;
}

.carousel-track-premium {
  position: relative;
  min-height: 320px;
}

.depoimento-card-premium {
  position: absolute;
  inset: 0;
  background: var(--cor-branco);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(28, 43, 74, 0.05);
  box-shadow: 20px 20px 50px rgba(28, 43, 74, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
  pointer-events: none;
}

.depoimento-card-premium.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.depoimento-quote-icon {
  margin-bottom: 1.5rem;
  color: var(--cor-primaria);
}

.depoimento-texto-premium {
  font-family: var(--fonte-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  line-height: 1.5;
  color: var(--cor-secundaria);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.depoimento-footer-premium {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.depoimento-autor-premium {
  font-family: var(--fonte-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cor-secundaria);
  font-style: normal;
}

.depoimento-verificado {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cor-primaria);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Nav Premium */
.carousel-nav-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.25rem; /* Aumentado para dar mais respiro */
}

.nav-btn-premium {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(28, 43, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cor-secundaria);
  transition: all 0.3s ease;
  background: transparent;
}

.nav-btn-premium:hover {
  background: var(--cor-secundaria);
  color: var(--cor-branco);
  border-color: var(--cor-secundaria);
}

.carousel-dots-premium {
  display: flex;
  gap: 0.75rem;
}

.carousel-dot-premium {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cor-detalhe);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot-premium.active {
  background: var(--cor-primaria);
  transform: scale(1.4);
}

/* Botão Google Premium */
.depoimentos-cta-google {
  margin-top: 0.25rem; /* Quase encostado na navegação */
  margin-bottom: 3rem; 
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}

/* Camada decorativa 1: Moldura Dourada */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 5%;
  right: 0%;
  width: 85%;
  height: 85%;
  border: 1px solid rgba(212, 146, 42, 0.4);
  border-radius: 40px 140px 40px 40px;
  z-index: 0;
  transform: rotate(2deg);
}

/* Camada decorativa 2: Bloco Sólido Sutil */
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: 8%;
  left: 5%;
  width: 70%;
  height: 70%;
  background: linear-gradient(135deg, rgba(28, 43, 74, 0.4), transparent);
  border-radius: 40px 100px 40px 40px;
  z-index: 0;
  transform: rotate(-3deg);
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  border-radius: 40px 140px 40px 40px;
  overflow: visible;
  /* Sombras em camadas para realismo extremo */
  box-shadow: 
    0 10px 20px rgba(0,0,0,0.2),
    0 30px 60px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.1);
  background: var(--cor-secundaria);
  z-index: 2;
  border: 8px solid rgba(255, 255, 255, 0.03); /* Borda interna de vidro */
}

.hero-person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  filter: saturate(1.05) contrast(1.05) brightness(1.02);
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 1.75rem 2rem;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  z-index: 3;
  border-left: 6px solid var(--cor-primaria);
  animation: float 8s ease-in-out infinite;
}

.badge-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.badge-crp {
  display: block;
  font-family: var(--fonte-secundaria);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cor-secundaria);
  letter-spacing: 0.05em;
}

.badge-text {
  display: block;
  font-size: 0.7rem;
  color: var(--cor-texto-suave);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.btn-google-premium {
  background: var(--cor-branco);
  color: var(--cor-secundaria);
  border: 1px solid rgba(28, 43, 74, 0.1);
  box-shadow: 0 10px 30px rgba(28, 43, 74, 0.05);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem; /* Reduzido */
  transition: all 0.4s ease;
}

.btn-google-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(28, 43, 74, 0.08);
  border-color: var(--cor-primaria);
}

/* Responsividade Depoimentos */
@media (max-width: 768px) {
  .depoimento-card-premium {
    padding: 2.5rem 1.25rem;
  }
  
  .depoimento-texto-premium {
    font-size: 1.1rem;
  }
  
  .carousel-track-premium {
    min-height: 360px;
  }
}




/* ==================== FAQ ==================== */
.section-faq {
  padding: var(--espaco-xl) 0;
  background: var(--cor-branco);
}

.faq-container {
  max-width: 800px;
}

.faq-header {
  text-align: center;
  margin-bottom: var(--espaco-lg);
}

.faq-item {
  border-bottom: 1px solid var(--cor-detalhe);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--espaco-md) 0;
  font-family: var(--fonte-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cor-secundaria);
  cursor: pointer;
  list-style: none;
  transition: color var(--transicao-rapida);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: var(--cor-primaria);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cor-primaria);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms ease;
  flex-shrink: 0;
  margin-left: var(--espaco-sm);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-question:hover::after {
  transform: scale(1.2);
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(0deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 350ms ease-in-out, opacity 350ms ease-in-out;
}

.faq-item[open] .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-bottom: var(--espaco-md);
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--cor-texto);
  opacity: 0.8;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--cor-primaria);
  text-decoration: underline;
}

/* ==================== LOCALIZAÇÃO ==================== */
.section-localizacao {
  padding: var(--espaco-xl) 0;
  background: var(--cor-fundo);
}

.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--espaco-lg);
  align-items: start;
}

.localizacao-address {
  font-style: normal;
  margin-bottom: var(--espaco-md);
}

.address-line {
  display: flex;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--cor-texto);
  line-height: 1.6;
}

.address-line svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.localizacao-contatos {
  display: flex;
  flex-direction: column;
  gap: var(--espaco-xs);
  margin-bottom: var(--espaco-md);
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--cor-texto);
  transition: color var(--transicao-rapida);
}

.contato-item:hover {
  color: var(--cor-primaria);
}

.contato-horario {
  cursor: default;
}

.redes-sociais {
  display: flex;
  align-items: center;
  gap: var(--espaco-xs);
  margin-bottom: var(--espaco-md);
}

.redes-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cor-secundaria);
  margin-right: 0.5rem;
}

.rede-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cor-secundaria);
  color: var(--cor-branco);
  transition: background var(--transicao-media), transform var(--transicao-rapida);
}

.rede-link:hover {
  background: var(--cor-primaria);
  transform: translateY(-2px);
}

.localizacao-mapa {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--sombra-media);
}

.localizacao-mapa iframe {
  width: 100%;
  height: 450px;
  display: block;
}

/* ==================== CTA / FORMULÁRIO ==================== */
.section-cta {
  padding: var(--espaco-xl) 0;
  position: relative;
  background: var(--cor-secundaria) url('Assets/cta_background.png') no-repeat center center / cover;
  background-attachment: fixed;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 43, 74, 0.92) 0%, rgba(28, 43, 74, 0.8) 100%);
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--espaco-lg);
  align-items: center;
}

.cta-texto .section-eyebrow {
  color: var(--cor-detalhe);
}

.cta-texto .section-title {
  color: var(--cor-branco);
}

.cta-descricao {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--espaco-md);
  line-height: 1.7;
}

.cta-formulario {
  background: var(--cor-branco);
  padding: var(--espaco-md);
  border-radius: 12px;
  box-shadow: var(--sombra-media);
}

.form-grupo {
  margin-bottom: var(--espaco-sm);
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cor-secundaria);
  margin-bottom: 0.375rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--fonte-body);
  font-size: 0.9375rem;
  color: var(--cor-texto);
  background: var(--cor-fundo);
  border: 2px solid transparent;
  border-radius: 6px;
  transition: all var(--transicao-rapida);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: rgba(212, 146, 42, 0.2);
  background: var(--cor-branco);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--cor-primaria);
  box-shadow: 0 0 0 3px rgba(212, 146, 42, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--cor-texto);
  opacity: 0.4;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232A2A2A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

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

.form-erro {
  display: none;
  font-size: 0.8125rem;
  color: #c0392b;
  margin-top: 0.375rem;
}

.form-grupo.erro .form-input,
.form-grupo.erro .form-select,
.form-grupo.erro .form-textarea {
  border-color: #c0392b;
}

.form-grupo.erro .form-erro {
  display: block;
}

.form-sucesso {
  display: none;
  font-size: 0.9375rem;
  color: #27ae60;
  font-weight: 600;
  text-align: center;
  padding: var(--espaco-sm);
  background: rgba(39, 174, 96, 0.1);
  border-radius: 6px;
  margin-top: var(--espaco-sm);
}

.form-sucesso.visible {
  display: block;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

/* ==================== RODAPÉ ==================== */
.footer {
  background: #0F182A;
  border-top: 1px solid rgba(212, 146, 42, 0.2);
  color: var(--cor-branco);
  font-family: var(--fonte-body);
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-top: 35px;
  padding-bottom: 30px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 1.5rem;
}

.footer-brand .logo-img {
  max-width: 160px;
  height: auto;
  object-fit: contain;
}

.footer-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transicao-rapida), transform var(--transicao-rapida);
}

.social-icon:hover {
  color: var(--cor-primaria);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cor-primaria);
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 300ms ease;
}

.footer-links a:hover {
  color: var(--cor-primaria);
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  transition: color 300ms ease;
}

.footer-contact a:hover {
  color: var(--cor-primaria);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

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

.footer-credits-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-credits-left p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links a {
  color: inherit;
  transition: color var(--transicao-rapida);
}

.footer-legal-links a:hover {
  color: var(--cor-primaria);
}

.footer-legal-links a + a::before {
  content: '|';
  margin: 0 10px;
  opacity: 0.3;
}

.footer-credits-right {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.footer-credits-right a {
  color: var(--cor-primaria);
  font-weight: 600;
  transition: opacity var(--transicao-rapida);
}

.footer-credits-right a:hover {
  opacity: 0.8;
}

/* ========================================
   COOKIE TOGGLE - Estilo iOS Minimalista (Padrão AG5)
   ======================================== */

/* Estado ativo (cookies aceitos) - bolinha à direita */
#cookie-toggle.active #cookie-toggle-dot {
    left: 15px !important;
    background: var(--cor-primaria);
}

/* Estado inativo (cookies rejeitados) - bolinha à esquerda */
#cookie-toggle.inactive #cookie-toggle-dot {
    left: 2px !important;
    background: #888;
}

/* Hover effect no toggle */
#ck-prefs-link:hover #cookie-toggle {
    border-color: rgba(255,255,255,0.4) !important;
}

#ck-prefs-link:hover #cookie-toggle-dot {
    box-shadow: 0 0 8px rgba(212, 146, 42, 0.5) !important;
}

/* ==================== ANIMAÇÕES SCROLL (CLASSES UTILITÁRIAS) ==================== */
.fade-in {
  opacity: 0;
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}

.fade-in.visible {
  opacity: 1;
}

.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
  will-change: transform, opacity;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
  will-change: transform, opacity;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
  will-change: transform, opacity;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
  will-change: transform, opacity;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 100ms; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 200ms; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 300ms; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 400ms; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 500ms; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== PREFERS REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-title,
  .hero-subtitle,
  .hero-cta-group,
  .hero-badge {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .marquee-track {
    animation: none;
  }

  .slide-left,
  .slide-right,
  .fade-up,
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==================== DRAWER MENU (PREMIUM MOBILE) ==================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--cor-secundaria);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem;
  transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.3);
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.drawer-logo img {
  height: 48px;
  width: auto;
}

.drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--cor-branco);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.drawer-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
  color: var(--cor-primaria);
}

.drawer-nav {
  margin-bottom: 3rem;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drawer-link {
  font-family: var(--fonte-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cor-branco);
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  letter-spacing: -0.02em;
}

.drawer-link:hover {
  opacity: 1;
  transform: translateX(10px);
  color: var(--cor-primaria);
}

.drawer-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.drawer-open {
  overflow: hidden;
}

/* ==================== MEDIA QUERIES ==================== */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    max-width: 100%;
    order: 1;
  }

  .hero-visual {
    order: 2;
    padding: 1rem;
  }

  .hero-image-frame {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-badge {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: float-mobile 8s ease-in-out infinite;
  }

  @keyframes float-mobile {
    0% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
    100% { transform: translateX(-50%) translateY(0px); }
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .sobre-container {
    grid-template-columns: 1fr;
  }

  .imagem-sticky {
    position: relative;
    top: auto;
    max-width: 400px;
    margin: 0 auto;
  }

  .cta-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cta-descricao {
    margin-bottom: 1rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --espaco-xl: 4rem;
    --container-padding: 1rem;
  }

  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
    background: rgba(28, 43, 74, 0.8); /* Fundo sólido sutil para contraste */
    backdrop-filter: blur(5px);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hamburger-line {
    background: var(--cor-primaria); /* Linhas douradas para destaque total */
  }

  .nav-cta {
    display: none;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }

  .galeria-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .galeria-wide {
    grid-column: span 2;
  }

  .video-embed-section {
    grid-template-columns: 1fr;
  }

  .localizacao-grid {
    grid-template-columns: 1fr;
  }

  .localizacao-mapa iframe {
    height: 300px;
  }

  .counters-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    gap: 2rem !important;
  }

  .footer-main > div {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: left !important;
  }

  .footer-brand .logo {
    justify-content: flex-start !important;
    margin: 0 0 1.5rem 0 !important;
  }

  .footer-brand .logo-img {
    max-width: 180px !important;
    margin: 0 !important;
  }

  .footer-social {
    justify-content: flex-start !important;
  }

  .footer-bottom-container {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    gap: 1rem !important;
  }

  .footer-legal-links {
    justify-content: flex-start !important;
  }

  .footer-credits-right {
    text-align: left !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.875rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .counters-grid {
    grid-template-columns: 1fr;
  }

  .galeria-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }

  .galeria-large,
  .galeria-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ========================================
   WHATSAPP PREMIUM EXPERIENCE (AG5)
   ======================================== */
.wa-premium-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Outfit', sans-serif;
}

/* O Balão - Estética Glassmorphism */
.wa-bubble {
    width: 300px;
    position: absolute;
    bottom: 85px;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px 24px 4px 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-bubble.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Cabeçalho do Chat */
.wa-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 12px;
}

.wa-avatar-wrapper { position: relative; }
.wa-avatar {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #25d366;
}

.wa-status-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #25d366;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: wa-pulse-green 2s infinite;
}

.wa-name {
    display: block;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 15px;
}

.wa-status-text {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animação de Digitação */
.wa-typing {
    display: flex;
    gap: 4px;
    padding: 10px 0;
}

.wa-typing span {
    width: 6px;
    height: 6px;
    background: #25d366;
    border-radius: 50%;
    animation: wa-typing-ani 1.4s infinite;
    opacity: 0.4;
}

.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes wa-typing-ani {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-4px); opacity: 1; }
}

/* Texto da Mensagem */
.wa-message-text p {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.wa-message-text strong { color: #000; font-weight: 700; }

/* Botão Flutuante - Forma Orgânica */
.wa-float-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border-radius: 20px 20px 5px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.wa-float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* Badge de Notificação */
.wa-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff3b30;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    transform: scale(0);
    transition: transform 0.5s ease;
}

.wa-badge.show { transform: scale(1); }

/* Fechar */
.wa-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s;
}
.wa-close:hover { color: #333; }

@keyframes wa-pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 480px) {
    .wa-premium-container { bottom: 20px; right: 20px; }
    .wa-bubble { width: 260px; bottom: 75px; }
}
