/* Conceito Prime — Manual de Marca (A ORDEM, 2025)
   Cores: #f7cc19 (amarelo), #161616 (escuro), #ff4c01 (laranja)
   Tipografia: Cairo (textos), Tachyon (títulos), Cosild (títulos sem acento)
*/

:root {
  --brand-yellow: #f7cc19;
  --brand-yellow-light: #fce88a;
  --brand-yellow-dark: #e5b800;
  --brand-dark: #161616;
  --brand-dark-deep: #0d0d0d;
  --brand-orange: #ff4c01;
  --brand-orange-light: #ff7a3d;
  --brand-gray-100: #f0f0f0;
  --brand-gray-200: #d9d9d9;
  --brand-gray-400: #6b6b6b;
}

/* Fontes proprietárias — adicione os arquivos em assets/fonts/ */
@font-face {
  font-family: 'Tachyon';
  src: url('../fonts/Tachyon.woff2') format('woff2'),
       url('../fonts/Tachyon.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cosild';
  src: url('../fonts/Cosild.woff2') format('woff2'),
       url('../fonts/Cosild.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { background-color: #fafafa; font-size: 1rem; line-height: 1.6; }

/* Títulos — Tachyon (fallback: Share Tech) */
.font-serif,
h1, h2, h3, h4 {
  font-family: 'Tachyon', 'Share Tech', sans-serif;
  letter-spacing: 0.02em;
}

/* Destaques sem acento — Cosild (fallback: Michroma) */
.font-display {
  font-family: 'Cosild', 'Michroma', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-bg {
  position: relative;
  overflow: hidden;
}

/* Camada 1 — imagem em preto e branco com leve blur (efeito glass) */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: url('../images/hero-bg.webp') center/cover no-repeat;
  filter: brightness(0.65) blur(2px);
  z-index: 0;
}

/* Camada 2 — véu glass: gradiente escuro + textura de vidro */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.72) 0%,
    rgba(22,22,22,0.55) 50%,
    rgba(10,10,10,0.80) 100%
  );
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border: 1px solid rgba(255,255,255,0.04);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--brand-yellow);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

#header {
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: all .4s;
}
.site-logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}
.site-logo {
  display: block;
  height: 2.25rem;
  width: auto;
  max-width: 10rem;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .site-logo {
    height: 2.5rem;
    max-width: 11.5rem;
  }
}
.header-nav-right {
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  flex-shrink: 0;
}
.header-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#header .nav-link,
#header .btn-wa {
  white-space: nowrap;
}
#mobile-menu {
  background: #fff;
}
.footer-logo {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: 12rem;
  object-fit: contain;
}

/* Rodapé: mais contraste */
.site-footer,
footer.bg-prime-950 {
  background: #0a0a0a !important;
  border-top: 1px solid rgba(255,255,255,.12);
}
.site-footer .footer-desc,
footer.bg-prime-950 .text-prime-400 {
  color: #d4d4d4 !important;
}
.site-footer .footer-link,
footer.bg-prime-950 a.text-prime-400 {
  color: #e5e5e5 !important;
}
.site-footer .footer-link:hover,
footer.bg-prime-950 a.text-prime-400:hover {
  color: var(--brand-yellow) !important;
}
.site-footer .footer-copy,
footer.bg-prime-950 .text-prime-500 {
  color: #b0b0b0 !important;
}
.site-footer h4,
.site-footer h2,
footer.bg-prime-950 h4,
footer.bg-prime-950 h2 {
  color: #fff;
}
.site-footer .border-white\/10,
footer.bg-prime-950 .border-white\/10 {
  border-color: rgba(255,255,255,.18) !important;
}

#header.scrolled {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 30px rgba(0,0,0,.03);
}

.service-card {
  transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--brand-gray-200);
  background-color: var(--brand-gray-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,22,22,.06);
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--brand-yellow);
  box-shadow: 0 24px 48px rgba(22,22,22,.1);
}
.service-icon-wrap {
  transition: all .4s ease;
  background-color: var(--brand-dark);
  color: var(--brand-yellow);
  border-color: transparent;
}
.service-icon-wrap i,
.service-icon-wrap svg {
  color: var(--brand-yellow);
}
.service-card:hover .service-icon-wrap {
  transform: scale(1.08);
}

.btn-luxury {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}
.btn-luxury::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 100%;
  background-color: var(--brand-yellow);
  z-index: -1;
  transition: width 0.4s ease;
}
.btn-luxury:hover::before { width: 100%; }
.btn-luxury:hover {
  color: var(--brand-dark);
  border-color: var(--brand-yellow);
}

.btn-brand {
  background-color: var(--brand-yellow);
  color: var(--brand-dark);
  font-weight: 700;
  transition: all 0.3s ease;
}
.btn-brand:hover {
  background-color: var(--brand-orange);
  color: #fff;
}

.carousel-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
}
.carousel-track {
  display: inline-flex;
  animation: scroll 40s linear infinite;
}
/* Carrossel continua rodando no hover (ata reunião) */
.carousel-group {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
}
.carousel-item {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
}
.carousel-item img {
  max-height: 120px;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}
.carousel-item:hover { transform: scale(1.15); }

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

.section-line {
  width: 2px;
  height: 60px;
  background-color: var(--brand-yellow);
  margin: 0 auto 2rem auto;
}

.brand-accent-line {
  width: 48px;
  height: 3px;
  background-color: var(--brand-yellow);
}

/* Depoimentos — aspas e frase mais amarelas */
.quote-icon {
  color: var(--brand-yellow);
  opacity: 0.85;
}
.testimonial-text {
  color: rgba(255,255,255,0.95);
}
.testimonial-text em,
.testimonial-text .highlight {
  color: var(--brand-yellow);
  font-style: normal;
}

/* Formulário padrão LP */
.cp-form input,
.cp-form select,
.cp-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--brand-gray-200);
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: var(--brand-dark);
  outline: none;
  transition: border-color 0.3s;
}
.cp-form input:focus,
.cp-form select:focus {
  border-bottom-color: var(--brand-orange);
}
.cp-form input::placeholder,
.cp-form textarea::placeholder { color: var(--brand-gray-400); }
.cp-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--brand-gray-200);
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: var(--brand-dark);
  outline: none;
  resize: vertical;
  min-height: 5rem;
  transition: border-color 0.3s;
}
.cp-form textarea:focus { border-bottom-color: var(--brand-orange); }
.cp-form select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--brand-gray-200);
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: var(--brand-gray-400);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b6b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}
.cp-form select:focus,
.cp-form select:valid { color: var(--brand-dark); border-bottom-color: var(--brand-orange); }

/* Seção contato em camadas (form + mapa GMB) */
.contact-section { overflow: hidden; }
.contact-layered {
  position: relative;
  min-height: 22rem;
}
@media (min-width: 1024px) {
  .contact-layered { min-height: 36rem; }
}
/* Mapa atrás, à direita, invadindo sob o formulário */
.contact-map-wrap {
  position: relative;
  min-height: 16rem;
  z-index: 1;
  overflow: hidden;
  margin-top: -1.25rem;
}
@media (min-width: 1024px) {
  .contact-map-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 22.25rem; /* sidebar(3.25) + form(27.5) - overlap(8.5) */
    margin-top: 0;
  }
}
.contact-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Frente: barra social + formulário */
.contact-front {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 1rem; /* mobile side padding */
}
@media (min-width: 640px) {
  .contact-front { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .contact-front {
    flex-direction: row;
    align-items: stretch;
    min-height: 36rem;
    width: 100%;
    padding: 0;
  }
}
.contact-social-rail {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  background: var(--brand-dark);
  width: 3.25rem;
  flex-shrink: 0;
  align-self: stretch;
}
@media (min-width: 1024px) {
  .contact-social-rail { display: flex; }
}
.contact-social-rail a {
  color: rgba(255,255,255,.9);
  font-size: 1.125rem;
  transition: color 0.3s, transform 0.3s;
}
.contact-social-rail a:hover { color: var(--brand-yellow); transform: scale(1.1); }
.contact-form-card {
  background: #fff;
  box-shadow: 0 16px 56px rgba(22,22,22,.14);
  padding: 2rem 1.75rem;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .contact-form-card {
    width: 27.5rem;
    max-width: 46%;
    padding: 2.75rem 2.5rem 2.5rem;
    margin-right: -8.5rem;
    align-self: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.contact-form-title {
  font-family: inherit;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.2;
  margin-bottom: 1.75rem;
}
.contact-form-title span { color: var(--brand-dark); }
.contact-submit {
  width: 100%;
  background: var(--brand-dark);
  color: #fff;
  border: none;
  padding: 1.0625rem 1.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.contact-submit:hover { background: var(--brand-orange); }
.contact-social-mobile {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  padding: 1rem 0 0;
}
@media (min-width: 1024px) {
  .contact-social-mobile { display: none; }
}
.contact-social-mobile a {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--brand-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.3s;
}
.contact-social-mobile a:hover { background: var(--brand-orange); }

/* ========== MODAL DE LEAD + FORMULÁRIOS INLINE ========== */
.lead-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(13,13,13,.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.lead-overlay.open {
  opacity: 1;
  visibility: visible;
}
.lead-card {
  background: #fff;
  padding: 2.5rem 2rem 2rem;
  width: 100%;
  max-width: 28rem;
  position: relative;
  border-top: 3px solid var(--brand-yellow);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  transform: translateY(12px);
  transition: transform .35s ease;
}
.lead-overlay.open .lead-card {
  transform: translateY(0);
}
.lead-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  background: var(--brand-gray-100);
  border: none;
  font-size: 1.25rem;
  color: var(--brand-gray-400);
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.lead-close:hover {
  background: var(--brand-dark);
  color: #fff;
}
.lead-card-header {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}
.lead-eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--brand-orange);
  margin-bottom: 0.625rem;
}
.lead-card-title {
  font-family: 'Tachyon', 'Share Tech', sans-serif;
  font-size: 1.625rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--brand-dark);
  line-height: 1.15;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.lead-card-title span { color: var(--brand-orange); }
.lead-card-desc {
  font-size: 0.9375rem;
  color: var(--brand-gray-400);
  line-height: 1.55;
  font-weight: 300;
}
.lead-card-desc strong { color: var(--brand-dark); font-weight: 600; }
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0.75rem;
}
.lead-form input,
.lead-form select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--brand-gray-200);
  border-radius: 0;
  padding: 0.875rem 0.625rem;
  font-size: 0.9375rem;
  color: var(--brand-dark);
  font-family: 'Cairo', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}
.lead-form input::placeholder { color: var(--brand-gray-400); }
.lead-form input:focus,
.lead-form select:focus { border-bottom-color: var(--brand-yellow); }
.lead-form select {
  appearance: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f7cc19' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  color: var(--brand-gray-400);
  cursor: pointer;
  padding-right: 2rem;
}
.lead-form select.has-value { color: var(--brand-dark); }
.lead-form select option {
  padding: 0.75rem 1rem;
}
.lead-form select option:not(:disabled) { color: var(--brand-dark); }
.lead-phone-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--brand-gray-200);
  gap: 0.625rem;
  padding: 0 0.625rem;
  transition: border-color 0.3s;
}
.lead-phone-row:focus-within { border-bottom-color: var(--brand-yellow); }
.lead-flag {
  font-size: 1.125rem;
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.9;
}
.lead-phone-row input {
  border: none;
  padding: 0.875rem 0;
  background: transparent;
  flex: 1;
  min-width: 0;
}
.lead-phone-row input:focus { border: none; }
.lead-submit {
  background: var(--brand-dark);
  color: #fff;
  border: none;
  padding: 1.0625rem 1.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  transition: background 0.35s, transform 0.2s;
  margin: 1.5rem -0.75rem 0;
  width: calc(100% + 1.5rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
.lead-submit:hover {
  background: var(--brand-orange);
  transform: translateY(-1px);
}
.lead-submit i { font-size: 0.75rem; transition: transform 0.3s; }
.lead-submit:hover i { transform: translateX(3px); }
.lead-success {
  display: none;
  text-align: center;
  padding: 2.5rem 0;
}
.lead-success.show { display: block; }
.lead-card:has(.lead-success.show) .lead-card-header { display: none; }
.lead-success i {
  font-size: 2.75rem;
  color: var(--brand-yellow);
  margin-bottom: 0.875rem;
  display: block;
}
.lead-success p {
  font-family: 'Tachyon', 'Share Tech', sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 0.375rem;
}
.lead-success span { font-size: 0.9375rem; color: var(--brand-gray-400); }

/* Inline nas páginas internas */
.lead-form-section {
  position: relative;
}
.lead-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, #e5b800 100%);
  opacity: 1;
}
.lead-form-section > .max-w-md {
  position: relative;
  z-index: 1;
}
.lead-card-inline {
  margin: 0 auto;
  background: #fff;
  border-top: 3px solid var(--brand-dark);
  box-shadow: 0 20px 60px rgba(22,22,22,.12);
  padding: 2.5rem 2rem 2rem;
}
.contact-form-card.lead-card-inline {
  background: #fff;
  border-top: 3px solid var(--brand-yellow);
  box-shadow: 0 20px 60px rgba(22,22,22,.14);
  width: 27.5rem;
  max-width: 100%;
  padding: 2.5rem 2rem 2rem;
}
.contact-form-card.lead-card-inline .lead-card-header {
  padding-right: 0;
  margin-bottom: 1.25rem;
}

/* Widget reCAPTCHA customizado (visual idêntico ao v2 original) */
.captcha-wrap {
  display: inline-flex;
  align-items: center;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  padding: 0 18px;
  height: 74px;
  gap: 20px;
  box-shadow: 0 0 4px 1px rgba(0,0,0,.08);
  margin-top: 0.25rem;
}
.captcha-left {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.captcha-cb {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #1a73e8;
}
.captcha-text {
  font-size: 14px;
  color: #4a4a4a;
  font-family: Roboto, Arial, sans-serif;
  white-space: nowrap;
}
.captcha-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-left: 14px;
  border-left: 1px solid #d3d3d3;
  flex-shrink: 0;
}
.captcha-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: conic-gradient(#4285F4 0deg 95deg, #EA4335 95deg 185deg, #FBBC05 185deg 270deg, #34A853 270deg 360deg);
  position: relative;
}
.captcha-logo::after {
  content: '';
  position: absolute;
  inset: 9px;
  background: #f9f9f9;
  border-radius: 50%;
}
.captcha-brand {
  font-size: 8px;
  color: #555;
  font-weight: 700;
  letter-spacing: 0.4px;
  font-family: Roboto, Arial, sans-serif;
}
.captcha-policy {
  font-size: 7px;
  color: #999;
  font-family: Roboto, Arial, sans-serif;
  white-space: nowrap;
}

/* Botão flutuante WhatsApp */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.wa-float-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}
.wa-float-menu {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  overflow: hidden;
  min-width: 11rem;
}
.wa-float-option {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.25rem;
  color: var(--brand-dark);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
}
.wa-float-option:hover { background: var(--brand-gray-100); }
.wa-float-option i { color: #25d366; font-size: 1.125rem; }

/* Carrossel de vídeos depoimentos */
.video-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.video-carousel {
  overflow: hidden;
  position: relative;
  flex: 1;
  min-width: 0;
}
.video-arrow {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(247,204,25,.4);
  background: rgba(247,204,25,.1);
  color: var(--brand-yellow);
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.video-arrow:hover {
  background: var(--brand-yellow);
  color: var(--brand-dark);
  border-color: var(--brand-yellow);
  transform: scale(1.08);
}
@media (max-width: 640px) {
  .video-arrow {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.75rem;
  }
  .video-carousel-wrap { gap: 0.5rem; }
}
.video-carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}
.video-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.video-thumb {
  position: relative;
  aspect-ratio: 997 / 534;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  width: 100%;
  display: block;
  background: var(--brand-dark-deep);
}
.video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.video-thumb:hover img { transform: scale(1.02); }
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22,22,22,.2);
  transition: background 0.3s;
}
.video-thumb:hover::after { background: rgba(22,22,22,.35); }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.video-play i {
  width: 4rem;
  height: 4rem;
  background: var(--brand-yellow);
  color: var(--brand-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  padding-left: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: transform 0.3s;
}
.video-thumb:hover .video-play i { transform: scale(1.08); }
.video-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.video-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-gray-400);
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.5;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}
.video-dot.active {
  background: var(--brand-yellow);
  opacity: 1;
  transform: scale(1.2);
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(13,13,13,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.video-modal.open { opacity: 1; visibility: visible; }
.video-modal-inner {
  width: 100%;
  max-width: 56rem;
  position: relative;
}
.video-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.video-modal-close:hover { opacity: 1; }
.video-modal iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: 0.5rem;
}


/* Carrossel depoimentos em texto */
.quotes-carousel { overflow: hidden; position: relative; }
.quotes-track {
  display: flex;
  transition: transform 0.5s ease;
}
.quotes-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.quotes-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.quotes-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  background: var(--brand-gray-400);
  opacity: 0.45;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}
.quotes-dot.active {
  background: var(--brand-yellow);
  opacity: 1;
  transform: scale(1.2);
}

/* Nossa estrutura: faixa amarela proporcional (canto inferior direito) */
.estrutura-shadow {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: -0.75rem;
  bottom: -0.75rem;
  background: var(--brand-yellow);
  z-index: -1;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: translate(0, 0);
}
.estrutura-shadow--active {
  opacity: 1;
  transform: translate(0.75rem, 0.75rem);
}
@media (min-width: 1024px) {
  .estrutura-shadow {
    top: 1rem;
    left: 1rem;
    right: -1rem;
    bottom: -1rem;
  }
  .estrutura-shadow--active {
    transform: translate(1rem, 1rem);
  }
}


/* CTA primário */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn-wa:hover {
  background: var(--brand-yellow);
  color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22,22,22,.22);
}
/* Variante amarela (hero) */
.btn-wa[style*="brand-yellow"]:hover {
  background: var(--brand-yellow-dark) !important;
  color: var(--brand-dark) !important;
  box-shadow: 0 10px 36px rgba(247,204,25,.5) !important;
}
.btn-wa-dark {
  background: var(--brand-dark);
  color: #fff;
}
.btn-wa-dark:hover { background: var(--brand-orange); }

/* Carrossel avaliações Google */
.reviews-carousel { overflow: hidden; position: relative; }
.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}
.review-card {
  min-width: 100%;
  flex-shrink: 0;
  padding: 0 0.25rem;
}
.review-card-inner {
  background: #fff;
  border: 1px solid var(--brand-gray-200);
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
}
.review-stars { color: #fbbc04; font-size: 0.875rem; letter-spacing: 2px; }
.review-author { font-weight: 700; color: var(--brand-dark); font-size: 0.9375rem; }
.review-text { color: var(--brand-gray-400); font-size: 0.9375rem; line-height: 1.6; margin-top: 0.75rem; }
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--brand-gray-400);
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.reviews-dot.active { background: var(--brand-yellow); transform: scale(1.2); }
