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

html, body {
  width: 100%;
  min-width: 320px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #F8F8F8;
  color: #000000;
}

img { max-width: 100%; }

:root {
  --tfv-black: #000000;
  --tfv-white: #F8F8F8;
  --tfv-gold: #C6A75E;
  --tfv-gray: #7A7A7A;
}

/* HERO */
.tfv-hero {
  position: relative;
  width: 100%;
  height: 760px;
  min-height: 760px;
  overflow: hidden;
  background: #000000;
}

.tfv-slider, .tfv-slide, .tfv-hero-overlay {
  position: absolute;
  inset: 0;
}

.tfv-slider { z-index: 1; }

.tfv-slide {
  opacity: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 5600ms ease;
  will-change: opacity, transform;
}

.tfv-slide.active {
  opacity: 1;
  transform: scale(1);
}

.tfv-hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.74) 36%, rgba(0,0,0,0.28) 70%, rgba(0,0,0,0.46) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.14) 0%, rgba(0,0,0,0.05) 55%, rgba(0,0,0,0.45) 100%);
}

.tfv-hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 72px));
  height: 100%;
  margin: 0 auto;
  padding-top: 46px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tfv-logo {
  display: block;
  width: 190px;
  max-width: 190px;
  height: auto;
  margin: 0 0 42px 0;
  object-fit: contain;
}

.tfv-eyebrow {
  margin: 0 0 14px 0;
  color: var(--tfv-gold);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.tfv-hero h1 {
  margin: 0;
  max-width: 760px;
  color: #F8F8F8;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.tfv-hero h1 span { color: var(--tfv-gold); }

.tfv-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  min-width: 270px;
  padding: 18px 34px;
  background: linear-gradient(180deg, #D8BC70, #C6A75E);
  color: #FFFFFF;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(0,0,0,0.22);
  transition: transform 180ms ease, filter 180ms ease;
}

.tfv-hero-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.tfv-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 50px;
  height: 70px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #FFFFFF;
  font-size: 68px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.92;
}

.tfv-arrow:hover { color: var(--tfv-gold); }
.tfv-arrow-left { left: 34px; }
.tfv-arrow-right { right: 34px; }

.tfv-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 5;
  display: flex;
  gap: 13px;
  transform: translateX(-50%);
}

.tfv-dot {
  width: 15px;
  height: 15px;
  padding: 0;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.tfv-dot.active { background: var(--tfv-gold); }

/* ANIMAÇÕES */
.tfv-animate {
  opacity: 0;
  transform: translateY(24px);
  animation: tfvFadeUp 850ms ease forwards;
}
.delay-1 { animation-delay: 120ms; }
.delay-2 { animation-delay: 240ms; }
.delay-3 { animation-delay: 360ms; }

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

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms ease, transform 800ms ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* SEÇÕES */
.tfv-section, .tfv-testimonials {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 26px;
}

.tfv-section-header {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 34px;
  text-align: center;
}

.tfv-section-header h2 {
  margin: 0 0 12px 0;
  color: #444444;
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
}

.tfv-section-header h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--tfv-gold);
}

.tfv-section-header p {
  margin: 0 auto;
  max-width: 900px;
  color: #000000;
  font-size: 21px;
  line-height: 1.45;
}

.tfv-photo-grid, .tfv-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
}

.tfv-photo-grid img {
  display: block;
  width: 100%;
  height: 410px;
  object-fit: cover;
  border: 0;
  transition: transform 280ms ease, filter 280ms ease;
}

.tfv-photo-grid img:hover {
  transform: scale(1.025);
  filter: brightness(1.04);
}

/* VÍDEOS */
.tfv-video-section { padding-top: 36px; }
.tfv-video-grid { gap: 28px; }

.tfv-video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background-color: #000000;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(0,0,0,0.12);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.tfv-video-card:hover, .tfv-video-card.is-playing {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 28px 58px rgba(0,0,0,0.22);
}

.tfv-video-frame, .tfv-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.tfv-video-frame iframe { border: 0; }

.tfv-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.38));
  pointer-events: none;
}

.tfv-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  color: #ffffff;
  text-align: center;
  transition: opacity 260ms ease, transform 260ms ease;
  pointer-events: none;
}

.tfv-video-card.is-playing .tfv-video-overlay {
  opacity: 0;
  transform: scale(1.06);
}

.tfv-play-icon {
  position: relative;
  width: 92px;
  height: 68px;
  border-radius: 18px;
  background: #ff003d;
  box-shadow: 0 14px 28px rgba(0,0,0,0.28);
}

.tfv-play-icon::after {
  content: "";
  position: absolute;
  left: 38px;
  top: 20px;
  width: 0;
  height: 0;
  border-left: 22px solid #ffffff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.tfv-video-overlay span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.tfv-sound-button {
  pointer-events: auto;
  display: none;
  margin-top: 8px;
  padding: 12px 18px;
  border: 2px solid var(--tfv-gold);
  border-radius: 999px;
  background: rgba(0,0,0,0.72);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.tfv-video-card.is-playing .tfv-sound-button { display: inline-flex; }
.tfv-video-card.sound-enabled .tfv-video-overlay { opacity: 0; }

/* DEPOIMENTOS */
.tfv-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tfv-card {
  padding: 28px;
  background: #FFFFFF;
  border: 1px solid rgba(198,167,94,0.35);
  box-shadow: 0 18px 38px rgba(0,0,0,0.06);
}

.tfv-card p {
  margin: 0 0 18px;
  color: #222222;
  font-size: 18px;
  line-height: 1.5;
}

.tfv-card strong {
  color: var(--tfv-gold);
  font-size: 15px;
  text-transform: uppercase;
}

/* CTA */
.tfv-contact {
  width: 100%;
  margin-top: 60px;
  padding: 42px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #000000;
  color: #F8F8F8;
  border-top: 1px solid rgba(198,167,94,0.45);
  border-bottom: 1px solid rgba(198,167,94,0.45);
}

.tfv-contact h2 {
  margin: 0 0 10px;
  color: var(--tfv-gold);
  font-size: 32px;
  line-height: 1.15;
}

.tfv-contact p {
  margin: 0;
  max-width: 650px;
  color: #F8F8F8;
  font-size: 16px;
  line-height: 1.5;
}

.tfv-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 17px 24px;
  border: 2px solid var(--tfv-gold);
  border-radius: 4px;
  color: var(--tfv-gold);
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.tfv-whatsapp:hover {
  background: var(--tfv-gold);
  color: #000000;
}

/* WHATSAPP FLUTUANTE */
.tfv-floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  animation: tfvPulse 2.2s infinite;
}

@keyframes tfvPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.045); }
  100% { transform: scale(1); }
}

/* RODAPÉ */
.tfv-footer {
  width: 100%;
  padding: 25px 16px;
  text-align: center;
  background: #000000;
  color: rgba(255,255,255,0.78);
  border-top: 2px solid var(--tfv-gold);
}

.tfv-footer p {
  margin: 0;
  font-size: 14px;
}

/* TABLET */
@media (max-width: 900px) {
  .tfv-hero {
    height: 720px;
    min-height: 720px;
  }

  .tfv-hero-content {
    width: calc(100% - 44px);
    padding-top: 32px;
  }

  .tfv-logo {
    width: 145px;
    max-width: 145px;
    margin-bottom: 34px;
  }

  .tfv-eyebrow { font-size: 14px; }

  .tfv-hero h1 {
    max-width: 540px;
    font-size: 46px;
  }

  .tfv-arrow { display: none; }

  .tfv-photo-grid, .tfv-video-grid, .tfv-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tfv-photo-grid img { height: 360px; }

  .tfv-contact {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* BARRA DE LOGO MOBILE */
/* MOBILE: LOGO DENTRO DO CARROSSEL + FOTO MAIS NÍTIDA */
@media (max-width: 560px) {
  .tfv-hero {
    height: 690px;
    min-height: 650px;
    max-height: 760px;
  }

  .tfv-slide {
    background-position: center center;
  }

  .tfv-hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.22) 42%, rgba(0,0,0,0.50) 100%),
      linear-gradient(90deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.06) 50%, rgba(0,0,0,0.10) 100%);
  }

  .tfv-hero-content {
    width: calc(100% - 36px);
    height: 100%;
    margin: 0 auto;
    padding: 0 0 92px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .tfv-hero-content::before {
    display: none;
  }

  .tfv-logo {
    display: block;
    width: 118px;
    max-width: 118px;
    margin: 0 0 145px 0;
  }

  .tfv-eyebrow {
    margin: 0 0 10px;
    max-width: 360px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.68);
  }

  .tfv-hero h1 {
    max-width: 360px;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 33px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-shadow: 0 3px 12px rgba(0,0,0,0.70);
  }

  .tfv-hero h1 span {
    color: #ffffff;
  }

  .tfv-hero-button {
    width: 100%;
    max-width: 310px;
    min-width: auto;
    margin-top: 34px;
    padding: 18px 20px;
    background: #d60000;
    color: #ffffff;
    border-radius: 0;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(0,0,0,0.24);
  }

  .tfv-dots {
    bottom: 24px;
  }

  .tfv-dot {
    width: 14px;
    height: 14px;
  }

  .tfv-section,
  .tfv-testimonials {
    width: calc(100% - 28px);
    padding-top: 48px;
  }

  .tfv-section-header h2 {
    font-size: 42px;
  }

  .tfv-section-header p {
    font-size: 17px;
  }

  .tfv-photo-grid,
  .tfv-video-grid,
  .tfv-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .tfv-photo-grid img {
    height: auto;
  }

  .tfv-video-overlay span {
    display: none;
  }

  .tfv-sound-button {
    display: inline-flex;
  }

  .tfv-floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 14px 17px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}


/* REMOVER EFEITO HOVER DOS VÍDEOS */
.tfv-video-card:hover,
.tfv-video-card.is-playing {
  transform: none !important;
  box-shadow: 0 18px 38px rgba(0,0,0,0.12) !important;
}

.tfv-video-overlay span,
.tfv-sound-button {
  display: none !important;
}


/* ===== CORREÇÃO DEFINITIVA DOS VÍDEOS ===== */
.tfv-video-card {
  transform: none !important;
}

.tfv-video-card:hover {
  transform: none !important;
  box-shadow: 0 18px 38px rgba(0,0,0,0.12) !important;
}

.tfv-video-card.is-playing {
  transform: none !important;
  box-shadow: 0 18px 38px rgba(0,0,0,0.12) !important;
}

.tfv-video-card .tfv-video-frame {
  z-index: 1;
}

.tfv-video-card .tfv-video-overlay {
  z-index: 3;
  pointer-events: none;
}

.tfv-video-card.video-loaded .tfv-video-overlay {
  display: none !important;
}

.tfv-video-card.video-loaded::before {
  display: none !important;
}

.tfv-video-card .tfv-video-overlay span,
.tfv-video-card .tfv-sound-button {
  display: none !important;
}

.tfv-video-card .tfv-play-icon {
  transition: transform 180ms ease, filter 180ms ease;
}

.tfv-video-card:hover .tfv-play-icon {
  transform: scale(1.04);
  filter: brightness(1.04);
}

.tfv-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}


/* AJUSTE DO TEXTO DO TOPO */
.tfv-hero-text {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(248,248,248,0.94);
  font-size: 21px;
  line-height: 1.45;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

@media (max-width: 900px) {
  .tfv-hero-text {
    max-width: 520px;
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .tfv-hero-text {
    display: none;
  }
}


/* ===== NOVO LAYOUT DO BLOCO DE DEPOIMENTOS ===== */
.tfv-testimonials {
  width: min(1180px, calc(100% - 36px));
  padding-top: 70px;
  padding-bottom: 48px;
}

.tfv-testimonials .tfv-section-header {
  max-width: 920px;
  margin-bottom: 42px;
}

.tfv-testimonials .tfv-section-header h2 {
  font-size: 58px;
}

.tfv-testimonials .tfv-section-header p {
  max-width: 850px;
  font-size: 22px;
  line-height: 1.45;
}

.tfv-testimonial-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 28px !important;
  width: 100%;
}

.tfv-card {
  position: relative;
  min-height: 260px;
  padding: 38px 42px 34px !important;
  background: #ffffff;
  border: 1px solid rgba(198, 167, 94, 0.38) !important;
  border-radius: 16px;
  box-shadow: 0 22px 52px rgba(0,0,0,0.08) !important;
  overflow: hidden;
}

.tfv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(198,167,94,0.10), transparent 34%);
  pointer-events: none;
}

.tfv-quote-mark {
  position: absolute;
  top: 28px;
  left: 38px;
  color: rgba(198,167,94,0.95);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 78px;
  line-height: 1;
  font-weight: 700;
}

.tfv-stars {
  margin: 0 0 24px 92px;
  color: #D2A339;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 6px;
  text-align: left;
}

.tfv-card p {
  position: relative;
  margin: 0 auto 22px !important;
  max-width: 560px;
  color: #111111;
  font-size: 21px !important;
  line-height: 1.48 !important;
  font-style: italic;
  text-align: center;
}

.tfv-testimonial-line {
  width: 92px;
  height: 2px;
  margin: 24px auto 20px;
  background: var(--tfv-gold);
  opacity: 0.8;
}

.tfv-client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.tfv-client-avatar {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, #D8BC70, #C6A75E);
  color: #ffffff;
  border: 3px solid rgba(198,167,94,0.28);
  font-size: 26px;
  font-weight: 900;
}

.tfv-client strong,
.tfv-card strong {
  display: block;
  color: var(--tfv-gold) !important;
  font-size: 22px !important;
  line-height: 1.15;
  text-transform: uppercase;
}

.tfv-client span,
.tfv-card span {
  display: block;
  margin-top: 6px;
  color: #111111;
  font-size: 17px;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .tfv-testimonial-grid {
    grid-template-columns: 1fr !important;
  }

  .tfv-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .tfv-testimonials {
    width: calc(100% - 28px);
    padding-top: 52px;
  }

  .tfv-testimonials .tfv-section-header h2 {
    font-size: 42px;
  }

  .tfv-testimonials .tfv-section-header p {
    font-size: 17px;
  }

  .tfv-card {
    padding: 34px 24px 30px !important;
    border-radius: 14px;
  }

  .tfv-quote-mark {
    top: 22px;
    left: 24px;
    font-size: 58px;
  }

  .tfv-stars {
    margin-left: 70px;
    font-size: 21px;
    letter-spacing: 4px;
  }

  .tfv-card p {
    font-size: 18px !important;
  }

  .tfv-client-avatar {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    font-size: 22px;
  }

  .tfv-client strong,
  .tfv-card strong {
    font-size: 18px !important;
  }

  .tfv-client span,
  .tfv-card span {
    font-size: 14px;
  }
}


/* ===== BLOCO NOSSAS CONQUISTAS ===== */
.tfv-achievements {
  width: 100%;
  margin-top: 54px;
  padding: 64px max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at top center, rgba(198,167,94,0.16), transparent 32%),
    linear-gradient(180deg, #050505 0%, #000000 100%);
  color: #ffffff;
  border-top: 1px solid rgba(198,167,94,0.55);
  border-bottom: 1px solid rgba(198,167,94,0.55);
}

.tfv-achievements-header {
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
}

.tfv-achievements-header h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
}

.tfv-achievements-header h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin: 16px auto 0;
  background: var(--tfv-gold);
}

.tfv-achievements-header p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 19px;
  line-height: 1.45;
}

.tfv-achievements-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.tfv-achievement-card {
  min-height: 240px;
  padding: 28px 18px 24px;
  border: 1px solid rgba(198,167,94,0.36);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  box-shadow: 0 20px 46px rgba(0,0,0,0.28);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tfv-achievement-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -70px;
  width: 150px;
  height: 150px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(198,167,94,0.13);
  filter: blur(6px);
}

.tfv-achievement-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(198,167,94,0.55);
  border-radius: 50%;
  color: var(--tfv-gold);
  font-size: 24px;
  background: rgba(0,0,0,0.32);
}

.tfv-achievement-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: var(--tfv-gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
}

.tfv-achievement-card strong {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 38px;
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.25;
  text-transform: uppercase;
}

.tfv-achievement-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .tfv-achievements-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tfv-achievements-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tfv-achievements-header h2 {
    font-size: 40px;
  }
}

@media (max-width: 560px) {
  .tfv-achievements {
    padding: 48px 22px;
    margin-top: 42px;
  }

  .tfv-achievements-header h2 {
    font-size: 34px;
  }

  .tfv-achievements-header p {
    font-size: 16px;
  }

  .tfv-achievements-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tfv-achievement-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .tfv-achievement-card h3 {
    font-size: 36px;
  }
}


/* =========================================================
   CORREÇÃO DEFINITIVA — CTA PREMIUM EM TODOS OS DISPOSITIVOS
   ========================================================= */

.tfv-hero-button {
  position: relative !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(180deg, #B31217, #7F0D11) !important;
  color: #FFFFFF !important;
  border-radius: 16px !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
  box-shadow:
    0 0 0 rgba(179,18,23,0),
    0 18px 34px rgba(0,0,0,0.24) !important;
  animation: tfvButtonPulse 2.8s infinite !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 10 !important;
}

.tfv-hero-button:hover {
  background: linear-gradient(180deg, #C9151B, #921015) !important;
  filter: brightness(1.02) !important;
}

.tfv-hero-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.28),
    transparent
  );
  transform: skewX(-20deg);
  animation: tfvShine 4s infinite;
  pointer-events: none;
}

@keyframes tfvShine {
  0% {
    left: -120%;
  }

  100% {
    left: 140%;
  }
}

@keyframes tfvButtonPulse {
  0% {
    box-shadow:
      0 0 0 rgba(179,18,23,0),
      0 18px 34px rgba(0,0,0,0.24);
  }

  50% {
    box-shadow:
      0 0 28px rgba(179,18,23,0.48),
      0 18px 34px rgba(0,0,0,0.30);
  }

  100% {
    box-shadow:
      0 0 0 rgba(179,18,23,0),
      0 18px 34px rgba(0,0,0,0.24);
  }
}

/* =========================================================
   CORREÇÃO DEFINITIVA — MOBILE
   O botão fica visível e fixado dentro do HERO
   ========================================================= */

@media (max-width: 560px) {
  .tfv-hero {
    height: 720px !important;
    min-height: 720px !important;
    max-height: none !important;
  }

  .tfv-hero-content {
    position: relative !important;
    width: calc(100% - 36px) !important;
    height: 100% !important;
    padding: 28px 0 100px !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: center !important;
  }

  .tfv-logo {
    width: 200px !important;
    max-width: 200px !important;
    margin: 0 0 155px 0 !important;
  }

  .tfv-eyebrow {
    display: block !important;
    margin: 0 0 10px 0 !important;
  }

  .tfv-hero h1 {
    display: block !important;
    margin: 0 !important;
  }

  .tfv-hero-button {
    display: inline-flex !important;
    width: 100% !important;
    max-width: 320px !important;
    min-width: auto !important;
    margin-top: 34px !important;
    padding: 18px 20px !important;
    font-size: 16px !important;
    line-height: 1.15 !important;
    border-radius: 16px !important;
    background: linear-gradient(180deg, #B31217, #7F0D11) !important;
    color: #FFFFFF !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}


/* =========================================================
   AJUSTE FINAL — CTA SEM TREMER + TEXTOS MOBILE MAIS ABAIXO
   ========================================================= */

/* Desktop: remove o tremido causado pelo transform no hover */
@media (min-width: 561px) {
  .tfv-hero-button:hover {
    transform: none !important;
    background: linear-gradient(180deg, #C9151B, #921015) !important;
    filter: brightness(1.02) !important;
  }
}

/* Mobile: NÃO altera o logotipo. Apenas desce textos e CTA. */
@media (max-width: 560px) {
  .tfv-eyebrow {
    margin-top: 26px !important;
  }

  .tfv-hero h1 {
    margin-top: 10px !important;
  }

  .tfv-hero-button {
    margin-top: 42px !important;
  }
}


/* =========================================================
   FIX DEFINITIVO — REMOVE TREMIDO DO HOVER NO DESKTOP
   ========================================================= */

@media (min-width: 561px) {

  .tfv-hero-button {
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    will-change: auto !important;
  }

  .tfv-hero-button:hover {
    transform: translateZ(0) !important;
    animation-play-state: running !important;
    box-shadow:
      0 0 28px rgba(179,18,23,0.48),
      0 18px 34px rgba(0,0,0,0.24) !important;
  }

  .tfv-hero-button::before {
    animation-play-state: running !important;
  }
}


/* =========================================================
   DESKTOP — CTA PREMIUM VINHO
   ========================================================= */

@media (min-width: 561px) {

  .tfv-hero-button {
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(180deg, #B31217, #7F0D11) !important;
    color: #FFFFFF !important;
    border-radius: 16px !important;
    box-shadow:
      0 0 0 rgba(179,18,23,0),
      0 18px 34px rgba(0,0,0,0.24) !important;
    animation: tfvButtonPulseDesktop 2.8s infinite !important;
  }

  .tfv-hero-button:hover {
    transform: none !important;
    background: linear-gradient(180deg, #C9151B, #921015) !important;
    filter: brightness(1.02) !important;
  }

  .tfv-hero-button::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -120% !important;
    width: 80% !important;
    height: 100% !important;
    background: linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.28),
      transparent
    ) !important;
    transform: skewX(-20deg) !important;
    animation: tfvShineDesktop 4s infinite !important;
    pointer-events: none !important;
  }

  @keyframes tfvShineDesktop {
    0% {
      left: -120%;
    }

    100% {
      left: 140%;
    }
  }

  @keyframes tfvButtonPulseDesktop {
    0% {
      box-shadow:
        0 0 0 rgba(179,18,23,0),
        0 18px 34px rgba(0,0,0,0.24);
    }

    50% {
      box-shadow:
        0 0 28px rgba(179,18,23,0.48),
        0 18px 34px rgba(0,0,0,0.30);
    }

    100% {
      box-shadow:
        0 0 0 rgba(179,18,23,0),
        0 18px 34px rgba(0,0,0,0.24);
    }
  }
}


/* =========================================================
   CORREÇÃO FINAL — CTA PREMIUM SOMENTE NO DESKTOP
   Esta regra fica no final do CSS para não ser sobrescrita.
   ========================================================= */

@media screen and (min-width: 561px) {

  header.tfv-hero .tfv-hero-content a.tfv-hero-button,
  .tfv-hero .tfv-hero-button,
  a.tfv-hero-button {
    position: relative !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(180deg, #B31217 0%, #7F0D11 100%) !important;
    color: #FFFFFF !important;
    border-radius: 16px !important;
    border: 0 !important;
    box-shadow:
      0 0 0 rgba(179,18,23,0),
      0 18px 34px rgba(0,0,0,0.28) !important;
    animation-name: tfvDesktopGlowFinal !important;
    animation-duration: 2.8s !important;
    animation-timing-function: ease-in-out !important;
    animation-iteration-count: infinite !important;
    transform: none !important;
    will-change: box-shadow !important;
  }

  header.tfv-hero .tfv-hero-content a.tfv-hero-button:hover,
  .tfv-hero .tfv-hero-button:hover,
  a.tfv-hero-button:hover {
    background: linear-gradient(180deg, #C9151B 0%, #921015 100%) !important;
    color: #FFFFFF !important;
    transform: none !important;
    filter: brightness(1.02) !important;
    animation-name: tfvDesktopGlowFinal !important;
    animation-play-state: running !important;
  }

  header.tfv-hero .tfv-hero-content a.tfv-hero-button::before,
  .tfv-hero .tfv-hero-button::before,
  a.tfv-hero-button::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -130% !important;
    width: 85% !important;
    height: 100% !important;
    background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,0.30) 50%,
      transparent 100%
    ) !important;
    transform: skewX(-20deg) !important;
    animation-name: tfvDesktopShineFinal !important;
    animation-duration: 4s !important;
    animation-timing-function: ease-in-out !important;
    animation-iteration-count: infinite !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }

  header.tfv-hero .tfv-hero-content a.tfv-hero-button {
    isolation: isolate !important;
  }

  @keyframes tfvDesktopShineFinal {
    0% {
      left: -130%;
    }

    45% {
      left: -130%;
    }

    100% {
      left: 145%;
    }
  }

  @keyframes tfvDesktopGlowFinal {
    0% {
      box-shadow:
        0 0 0 rgba(179,18,23,0),
        0 18px 34px rgba(0,0,0,0.28);
    }

    50% {
      box-shadow:
        0 0 34px rgba(179,18,23,0.55),
        0 18px 34px rgba(0,0,0,0.32);
    }

    100% {
      box-shadow:
        0 0 0 rgba(179,18,23,0),
        0 18px 34px rgba(0,0,0,0.28);
    }
  }
}


/* =========================================================
   CTA ENTRE FILME E DEPOIMENTOS
   ========================================================= */

.tfv-mid-cta {
  width: 100%;
  padding: 26px 20px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tfv-mid-cta-button {
  min-width: 340px;
}

@media (max-width: 560px) {

  .tfv-mid-cta {
    padding: 18px 20px 0;
  }

  .tfv-mid-cta-button {
    width: 100%;
    max-width: 320px;
    min-width: auto;
  }
}


/* =========================================================
   MELHORIA DE NITIDEZ DAS CAPAS DOS VÍDEOS
   ========================================================= */

.tfv-video-card {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  image-rendering: auto !important;
  overflow: hidden !important;
}

.tfv-video-card::before {
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.06),
      rgba(0,0,0,0.22)
    ) !important;
}

.tfv-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.02),
      rgba(0,0,0,0)
    );
  pointer-events: none;
}

/* Desktop */
@media (min-width: 561px) {

  .tfv-video-card {
    filter:
      contrast(1.06)
      saturate(1.08)
      brightness(1.02);
  }

}

/* Mobile */
@media (max-width: 560px) {

  .tfv-video-card {
    filter:
      contrast(1.04)
      saturate(1.06)
      brightness(1.01);
  }

}


/* =========================================================
   MOBILE — CTA TEXTO EM 2 LINHAS CENTRALIZADO
   ========================================================= */

@media (max-width: 560px) {

  .tfv-hero-button,
  .tfv-mid-cta-button {
    text-align: center !important;
    line-height: 1.25 !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
    gap: 2px !important;
  }

  .tfv-hero-button br,
  .tfv-mid-cta-button br {
    display: block !important;
  }
}


/* =========================================================
   DESKTOP — CENTRALIZAR TEXTOS DOS CTAs + EFEITOS PREMIUM
   ========================================================= */

@media (min-width: 561px) {

  .tfv-hero-button,
  .tfv-mid-cta-button {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    line-height: 1.25 !important;
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
  }

  .tfv-hero-button::before,
  .tfv-mid-cta-button::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -130% !important;
    width: 85% !important;
    height: 100% !important;
    background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,0.28) 50%,
      transparent 100%
    ) !important;
    transform: skewX(-20deg) !important;
    animation: tfvDesktopCTAEffect 4s ease-in-out infinite !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }

  .tfv-hero-button,
  .tfv-mid-cta-button {
    animation: tfvDesktopGlowCTA 2.8s ease-in-out infinite !important;
  }

  .tfv-hero-button:hover,
  .tfv-mid-cta-button:hover {
    transform: none !important;
    filter: brightness(1.03) !important;
  }

  @keyframes tfvDesktopCTAEffect {
    0% {
      left: -130%;
    }

    45% {
      left: -130%;
    }

    100% {
      left: 145%;
    }
  }

  @keyframes tfvDesktopGlowCTA {
    0% {
      box-shadow:
        0 0 0 rgba(179,18,23,0),
        0 18px 34px rgba(0,0,0,0.24);
    }

    50% {
      box-shadow:
        0 0 34px rgba(179,18,23,0.52),
        0 18px 34px rgba(0,0,0,0.30);
    }

    100% {
      box-shadow:
        0 0 0 rgba(179,18,23,0),
        0 18px 34px rgba(0,0,0,0.24);
    }
  }
}


/* =========================================================
   DESKTOP — GLOW PREMIUM + SHINE LENTO
   ========================================================= */

@media (min-width: 561px) {

  .tfv-hero-button,
  .tfv-mid-cta-button {

    animation: tfvDesktopPremiumGlow 3.2s ease-in-out infinite !important;

    box-shadow:
      0 0 0 rgba(179,18,23,0),
      0 18px 34px rgba(0,0,0,0.24) !important;

    transform: none !important;
    will-change: box-shadow !important;
  }

  .tfv-hero-button::before,
  .tfv-mid-cta-button::before {

    content: "" !important;

    position: absolute !important;
    top: 0 !important;
    left: -140% !important;

    width: 85% !important;
    height: 100% !important;

    background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,0.30) 50%,
      transparent 100%
    ) !important;

    transform: skewX(-20deg) !important;

    animation: tfvDesktopPremiumShine 5.5s ease-in-out infinite !important;

    pointer-events: none !important;

    z-index: 1 !important;
  }

  .tfv-hero-button:hover,
  .tfv-mid-cta-button:hover {

    transform: none !important;

    filter: brightness(1.03) !important;

    background: linear-gradient(
      180deg,
      #C9151B 0%,
      #921015 100%
    ) !important;
  }

  @keyframes tfvDesktopPremiumGlow {

    0% {

      box-shadow:
        0 0 0 rgba(179,18,23,0),
        0 18px 34px rgba(0,0,0,0.24);
    }

    50% {

      box-shadow:
        0 0 34px rgba(179,18,23,0.42),
        0 18px 34px rgba(0,0,0,0.28);
    }

    100% {

      box-shadow:
        0 0 0 rgba(179,18,23,0),
        0 18px 34px rgba(0,0,0,0.24);
    }
  }

  @keyframes tfvDesktopPremiumShine {

    0% {
      left: -140%;
    }

    55% {
      left: -140%;
    }

    100% {
      left: 150%;
    }
  }
}


/* =========================================================
   CAPAS DOS VÍDEOS — MELHOR NITIDEZ
   ========================================================= */

.tfv-video-card {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  image-rendering: auto !important;
}

@media (min-width: 561px) {
  .tfv-video-card {
    filter: contrast(1.05) saturate(1.06) brightness(1.02);
  }
}

@media (max-width: 560px) {
  .tfv-video-card {
    filter: contrast(1.03) saturate(1.04) brightness(1.01);
  }
}


/* =========================================================
   BOTÃO FLUTUANTE OFICIAL DO WHATSAPP
   ========================================================= */

.tfv-floating-whatsapp {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  z-index: 9999 !important;
  width: 68px !important;
  height: 68px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #25D366 !important;
  color: #FFFFFF !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25) !important;
  animation: tfvWhatsappPulse 2.8s infinite !important;
}

.tfv-floating-whatsapp img {
  width: 38px !important;
  height: 38px !important;
  display: block !important;
}

.tfv-floating-whatsapp:hover {
  transform: scale(1.05) !important;
}

@keyframes tfvWhatsappPulse {
  0% {
    box-shadow:
      0 0 0 rgba(37,211,102,0),
      0 8px 25px rgba(0,0,0,0.25);
  }

  50% {
    box-shadow:
      0 0 25px rgba(37,211,102,0.55),
      0 8px 25px rgba(0,0,0,0.25);
  }

  100% {
    box-shadow:
      0 0 0 rgba(37,211,102,0),
      0 8px 25px rgba(0,0,0,0.25);
  }
}

@media (max-width: 560px) {
  .tfv-floating-whatsapp {
    right: 14px !important;
    bottom: 14px !important;
    width: 62px !important;
    height: 62px !important;
  }

  .tfv-floating-whatsapp img {
    width: 35px !important;
    height: 35px !important;
  }
}


/* =========================================================
   EFEITOS PREMIUM DOS BOTÕES CTAs
   - Glow premium pulsando
   - Shine passando lentamente
   - Hover suave sem tremido
   ========================================================= */

.tfv-hero-button,
.tfv-mid-cta-button {
  position: relative !important;
  overflow: hidden !important;
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
  background: linear-gradient(180deg, #B31217 0%, #7F0D11 100%) !important;
  color: #FFFFFF !important;
  border-radius: 16px !important;
  border: 0 !important;
  box-shadow:
    0 0 0 rgba(179,18,23,0),
    0 18px 34px rgba(0,0,0,0.24) !important;
  animation: tfvButtonGlowPremium 3.2s ease-in-out infinite !important;
  transform: none !important;
  will-change: box-shadow !important;
  isolation: isolate !important;
}

.tfv-hero-button::before,
.tfv-mid-cta-button::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -140% !important;
  width: 85% !important;
  height: 100% !important;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.30) 50%,
    transparent 100%
  ) !important;
  transform: skewX(-20deg) !important;
  animation: tfvButtonShinePremium 5.5s ease-in-out infinite !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.tfv-hero-button:hover,
.tfv-mid-cta-button:hover {
  background: linear-gradient(180deg, #C9151B 0%, #921015 100%) !important;
  filter: brightness(1.05) !important;
  transform: none !important;
  box-shadow:
    0 0 34px rgba(179,18,23,0.55),
    0 18px 34px rgba(0,0,0,0.32) !important;
}

/* Mantém o texto acima do brilho */
.tfv-hero-button,
.tfv-mid-cta-button {
  z-index: 1 !important;
}

/* Desktop: efeito completo */
@media (min-width: 561px) {
  .tfv-hero-button,
  .tfv-mid-cta-button {
    animation: tfvButtonGlowPremium 3.2s ease-in-out infinite !important;
  }
}

/* Mobile: efeito mais discreto */
@media (max-width: 560px) {
  .tfv-hero-button,
  .tfv-mid-cta-button {
    animation: tfvButtonGlowPremiumMobile 3.8s ease-in-out infinite !important;
  }

  .tfv-hero-button:hover,
  .tfv-mid-cta-button:hover {
    transform: none !important;
  }

  .tfv-hero-button::before,
  .tfv-mid-cta-button::before {
    animation-duration: 6.5s !important;
    opacity: 0.72 !important;
  }
}

@keyframes tfvButtonShinePremium {
  0% {
    left: -140%;
  }

  55% {
    left: -140%;
  }

  100% {
    left: 150%;
  }
}

@keyframes tfvButtonGlowPremium {
  0% {
    box-shadow:
      0 0 0 rgba(179,18,23,0),
      0 18px 34px rgba(0,0,0,0.24);
  }

  50% {
    box-shadow:
      0 0 34px rgba(179,18,23,0.48),
      0 18px 34px rgba(0,0,0,0.30);
  }

  100% {
    box-shadow:
      0 0 0 rgba(179,18,23,0),
      0 18px 34px rgba(0,0,0,0.24);
  }
}

@keyframes tfvButtonGlowPremiumMobile {
  0% {
    box-shadow:
      0 0 0 rgba(179,18,23,0),
      0 14px 28px rgba(0,0,0,0.22);
  }

  50% {
    box-shadow:
      0 0 22px rgba(179,18,23,0.36),
      0 14px 28px rgba(0,0,0,0.26);
  }

  100% {
    box-shadow:
      0 0 0 rgba(179,18,23,0),
      0 14px 28px rgba(0,0,0,0.22);
  }
}


/* =========================================================
   CTA — PULSAR SUAVE + GLOW PREMIUM
   ========================================================= */

.tfv-hero-button,
.tfv-mid-cta-button {
  animation: tfvCtaPulsePremium 2.6s ease-in-out infinite !important;
  transform-origin: center center !important;
  will-change: transform, box-shadow !important;
}

/* Mantém o hover sem tremido */
.tfv-hero-button:hover,
.tfv-mid-cta-button:hover {
  transform: scale(1.018) !important;
  filter: brightness(1.05) !important;
}

/* Shine lento continua ativo */
.tfv-hero-button::before,
.tfv-mid-cta-button::before {
  animation: tfvButtonShinePremium 5.5s ease-in-out infinite !important;
}

/* Desktop: pulsar um pouco mais perceptível */
@media (min-width: 561px) {
  .tfv-hero-button,
  .tfv-mid-cta-button {
    animation: tfvCtaPulsePremium 2.6s ease-in-out infinite !important;
  }
}

/* Mobile: pulsar mais discreto para não atrapalhar a leitura */
@media (max-width: 560px) {
  .tfv-hero-button,
  .tfv-mid-cta-button {
    animation: tfvCtaPulsePremiumMobile 3s ease-in-out infinite !important;
  }

  .tfv-hero-button:hover,
  .tfv-mid-cta-button:hover {
    transform: none !important;
  }
}

@keyframes tfvCtaPulsePremium {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 rgba(179,18,23,0),
      0 18px 34px rgba(0,0,0,0.24);
  }

  50% {
    transform: scale(1.035);
    box-shadow:
      0 0 36px rgba(179,18,23,0.58),
      0 20px 38px rgba(0,0,0,0.32);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 rgba(179,18,23,0),
      0 18px 34px rgba(0,0,0,0.24);
  }
}

@keyframes tfvCtaPulsePremiumMobile {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 rgba(179,18,23,0),
      0 14px 28px rgba(0,0,0,0.22);
  }

  50% {
    transform: scale(1.022);
    box-shadow:
      0 0 24px rgba(179,18,23,0.42),
      0 16px 30px rgba(0,0,0,0.26);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 rgba(179,18,23,0),
      0 14px 28px rgba(0,0,0,0.22);
  }
}


/* =========================================================
   CORREÇÃO FINAL — CTAs PULSANDO DE VERDADE
   Aplica nos 2 botões:
   1. CTA do Hero
   2. CTA depois do bloco Filme
   ========================================================= */

.tfv-hero-button,
.tfv-mid-cta-button {
  position: relative !important;
  overflow: visible !important;
  isolation: isolate !important;
  background: linear-gradient(180deg, #B31217 0%, #7F0D11 100%) !important;
  color: #FFFFFF !important;
  border-radius: 16px !important;
  border: 0 !important;
  transform-origin: center center !important;
  animation-name: tfvCtaRealPulse !important;
  animation-duration: 1.9s !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  will-change: transform, box-shadow !important;
}

/* Shine passando por cima do botão */
.tfv-hero-button::before,
.tfv-mid-cta-button::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -140% !important;
  width: 85% !important;
  height: 100% !important;
  border-radius: 16px !important;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.34) 50%,
    transparent 100%
  ) !important;
  transform: skewX(-20deg) !important;
  animation-name: tfvCtaRealShine !important;
  animation-duration: 4.8s !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

/* Anel externo pulsando */
.tfv-hero-button::after,
.tfv-mid-cta-button::after {
  content: "" !important;
  position: absolute !important;
  inset: -8px !important;
  border-radius: 22px !important;
  border: 2px solid rgba(179,18,23,0.55) !important;
  box-shadow: 0 0 22px rgba(179,18,23,0.45) !important;
  opacity: 0 !important;
  transform: scale(0.96) !important;
  animation-name: tfvCtaOuterPulse !important;
  animation-duration: 1.9s !important;
  animation-timing-function: ease-out !important;
  animation-iteration-count: infinite !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.tfv-hero-button:hover,
.tfv-mid-cta-button:hover {
  background: linear-gradient(180deg, #C9151B 0%, #921015 100%) !important;
  filter: brightness(1.05) !important;
}

/* Desktop: pulse mais perceptível */
@media (min-width: 561px) {
  .tfv-hero-button,
  .tfv-mid-cta-button {
    animation-name: tfvCtaRealPulse !important;
  }
}

/* Mobile: mantém funcionando, mas um pouco mais suave */
@media (max-width: 560px) {
  .tfv-hero-button,
  .tfv-mid-cta-button {
    animation-name: tfvCtaRealPulseMobile !important;
  }

  .tfv-hero-button::after,
  .tfv-mid-cta-button::after {
    inset: -6px !important;
    border-radius: 20px !important;
  }
}

@keyframes tfvCtaRealPulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 rgba(179,18,23,0),
      0 18px 34px rgba(0,0,0,0.24);
  }

  50% {
    transform: scale(1.045);
    box-shadow:
      0 0 42px rgba(179,18,23,0.62),
      0 22px 42px rgba(0,0,0,0.34);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 rgba(179,18,23,0),
      0 18px 34px rgba(0,0,0,0.24);
  }
}

@keyframes tfvCtaRealPulseMobile {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 rgba(179,18,23,0),
      0 14px 28px rgba(0,0,0,0.22);
  }

  50% {
    transform: scale(1.026);
    box-shadow:
      0 0 28px rgba(179,18,23,0.46),
      0 16px 30px rgba(0,0,0,0.26);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 rgba(179,18,23,0),
      0 14px 28px rgba(0,0,0,0.22);
  }
}

@keyframes tfvCtaOuterPulse {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }

  45% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: scale(1.13);
  }
}

@keyframes tfvCtaRealShine {
  0% {
    left: -140%;
  }

  55% {
    left: -140%;
  }

  100% {
    left: 150%;
  }
}


/* =========================================================
   WHATSAPP FLUTUANTE — VERDE OFICIAL + ÍCONE BRANCO
   ========================================================= */

.tfv-floating-whatsapp {
  background: #25D366 !important;
}

.tfv-floating-whatsapp img {
  filter: brightness(0) invert(1) !important;
}


/* =========================================================
   CTA POSICIONADO ABAIXO DO BLOCO NOSSAS CONQUISTAS
   ========================================================= */

.tfv-achievements + .tfv-mid-cta {
  padding: 42px 20px 6px;
}

@media (max-width: 560px) {
  .tfv-achievements + .tfv-mid-cta {
    padding: 34px 20px 4px;
  }
}


/* =========================================================
   BLOCO PLANO PRATA
   ========================================================= */

.tfv-pricing-plan {
  width: 100%;
  padding: 72px 20px 44px;
  background:
    radial-gradient(circle at top center, rgba(198,167,94,0.08), transparent 34%),
    #F8F8F8;
}

.tfv-pricing-card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 44px 64px 48px;
  position: relative;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94));
  border: 1px solid rgba(198,167,94,0.46);
  border-radius: 20px;
  box-shadow:
    0 28px 70px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

.tfv-pricing-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(198,167,94,0.18);
  border-radius: 16px;
  pointer-events: none;
}

.tfv-pricing-ornament,
.tfv-pricing-divider,
.tfv-pricing-bottom-divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--tfv-gold);
}

.tfv-pricing-ornament span,
.tfv-pricing-divider span,
.tfv-pricing-bottom-divider span {
  width: min(260px, 30%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,167,94,0.86), transparent);
}

.tfv-pricing-ornament em,
.tfv-pricing-divider em,
.tfv-pricing-bottom-divider em {
  font-style: normal;
  color: var(--tfv-gold);
  line-height: 1;
}

.tfv-pricing-ornament {
  margin-bottom: 18px;
}

.tfv-pricing-ornament em {
  font-size: 22px;
}

.tfv-pricing-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #333333;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 66px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.tfv-pricing-divider {
  margin: 24px 0 34px;
}

.tfv-pricing-divider em {
  font-size: 18px;
}

.tfv-pricing-list {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 16px;
  list-style: none;
}

.tfv-pricing-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
  color: #161616;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0.005em;
}

.tfv-pricing-list li span {
  width: 24px;
  height: 24px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--tfv-gold);
  border-radius: 50%;
  color: var(--tfv-gold);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.tfv-pricing-list li small {
  color: #333333;
  font-size: 0.95em;
}

.tfv-pricing-bottom-divider {
  margin: 34px 0 18px;
}

.tfv-pricing-bottom-divider em {
  font-size: 20px;
}

.tfv-pricing-price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 22px;
  margin-bottom: 26px;
  color: #1f1f1f;
  text-align: center;
}

.tfv-pricing-price span {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 34px;
  line-height: 1;
  color: #222222;
  white-space: nowrap;
}

.tfv-pricing-price strong {
  color: #8A0614;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 88px;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-shadow: 0 10px 24px rgba(138,6,20,0.12);
}

.tfv-pricing-price strong small {
  font-size: 0.42em;
  letter-spacing: -0.02em;
  vertical-align: baseline;
}

.tfv-pricing-button {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  margin: 0 auto;
  display: flex !important;
  min-width: auto !important;
  padding: 19px 30px !important;
  border-radius: 14px !important;
  text-align: center !important;
  letter-spacing: 0.16em;
}

/* Ajuste para o botão do Plano Prata não herdar quebra de linha dos CTAs mobile */
.tfv-pricing-button br {
  display: none !important;
}

@media (max-width: 900px) {
  .tfv-pricing-card {
    padding: 40px 34px 44px;
  }

  .tfv-pricing-card h2 {
    font-size: 54px;
  }

  .tfv-pricing-list li {
    font-size: 18px;
  }

  .tfv-pricing-price strong {
    font-size: 74px;
  }

  .tfv-pricing-price span {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .tfv-pricing-plan {
    padding: 52px 14px 32px;
  }

  .tfv-pricing-card {
    padding: 34px 20px 34px;
    border-radius: 18px;
  }

  .tfv-pricing-card::before {
    inset: 9px;
    border-radius: 14px;
  }

  .tfv-pricing-card h2 {
    font-size: 36px;
    letter-spacing: 0.055em;
  }

  .tfv-pricing-ornament span,
  .tfv-pricing-divider span,
  .tfv-pricing-bottom-divider span {
    width: 26%;
  }

  .tfv-pricing-divider {
    margin: 20px 0 26px;
  }

  .tfv-pricing-list {
    gap: 13px;
  }

  .tfv-pricing-list li {
    grid-template-columns: 24px 1fr;
    gap: 12px;
    font-size: 16px;
    line-height: 1.34;
  }

  .tfv-pricing-list li span {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }

  .tfv-pricing-bottom-divider {
    margin: 28px 0 16px;
  }

  .tfv-pricing-price {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
  }

  .tfv-pricing-price span {
    font-size: 25px;
  }

  .tfv-pricing-price strong {
    font-size: 72px;
  }

  .tfv-pricing-button {
    width: 100% !important;
    max-width: 320px !important;
    padding: 18px 18px !important;
    letter-spacing: 0.08em;
    line-height: 1.25 !important;
  }
}


/* =========================================================
   CORREÇÃO — ITEM "TRAILER EM HD" NA MESMA LINHA
   ========================================================= */

.tfv-pricing-list li {
  word-break: normal;
  overflow-wrap: normal;
}


/* =========================================================
   AJUSTE DESKTOP — BLOCO PLANO PRATA MENOR + CTA CENTRALIZADO
   Estas alterações valem somente para Desktop
   ========================================================= */

@media (min-width: 561px) {

  .tfv-pricing-plan {
    padding: 48px 20px 34px !important;
  }

  .tfv-pricing-card {
    width: min(820px, 100%) !important;
    padding: 34px 42px 36px !important;
  }

  .tfv-pricing-card::before {
    inset: 10px !important;
  }

  .tfv-pricing-card h2 {
    font-size: 48px !important;
    letter-spacing: 0.07em !important;
  }

  .tfv-pricing-ornament {
    margin-bottom: 14px !important;
  }

  .tfv-pricing-divider {
    margin: 18px 0 24px !important;
  }

  .tfv-pricing-list {
    width: min(660px, 100%) !important;
    gap: 12px !important;
  }

  .tfv-pricing-list li {
    font-size: 17px !important;
    line-height: 1.28 !important;
  }

  .tfv-pricing-list li span {
    width: 22px !important;
    height: 22px !important;
    font-size: 13px !important;
  }

  .tfv-pricing-bottom-divider {
    margin: 26px 0 14px !important;
  }

  .tfv-pricing-price {
    gap: 16px !important;
    margin-bottom: 20px !important;
  }

  .tfv-pricing-price span {
    font-size: 28px !important;
  }

  .tfv-pricing-price strong {
    font-size: 68px !important;
  }

  .tfv-pricing-button {
    width: min(500px, 100%) !important;
    max-width: 500px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    padding: 18px 26px !important;
  }
}


/* =========================================================
   AJUSTE DESKTOP — CENTRALIZAR CTA DO PLANO PRATA
   ========================================================= */

@media (min-width: 561px) {
  .tfv-pricing-card .tfv-pricing-button {
    display: flex !important;
    width: min(500px, 100%) !important;
    max-width: 500px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    align-self: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .tfv-pricing-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .tfv-pricing-card > * {
    width: 100%;
  }

  .tfv-pricing-card .tfv-pricing-button {
    width: min(500px, 100%) !important;
  }
}
