/* DESIGN SYSTEM & VARIABLES */
:root {
  /* Colors */
  --bg-dark: #0f1013;
  --bg-dark-alt: #161821;
  --bg-light: #f9f9f9;
  --gold: #f4b10f;
  --gold-hover: #d9a00e;
  --gold-rgb: 244, 177, 15;
  --text-white: #ffffff;
  --text-gray: #a4a4a4;
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #f4b10f, #e6a50d);
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  
  /* Spacing & Sizes */
  --container-max: 1140px;
  --container-px: 24px;
  --section-py: 60px;
  
  /* Utilities */
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

@media (min-width: 768px) {
  :root {
    --container-px: 40px;
    --section-py: 80px;
  }
}

@media (min-width: 1024px) {
  :root {
    --section-py: 100px;
  }
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(28px, 5vw, 48px); }
h2 { font-size: clamp(24px, 4vw, 36px); }
h3 { font-size: clamp(20px, 3vw, 28px); }

.text-gold {
  color: var(--gold);
}

.text-center { text-align: center; }

/* LAYOUT UTILS */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.section {
  padding: var(--section-py) 0;
}

.bg-alt {
  background-color: var(--bg-dark-alt);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--gold);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(var(--gold-rgb), 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ANIMATIONS */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left { transform: translateX(-30px); }
.fade-right { transform: translateX(30px); }

.fade-left.is-visible,
.fade-right.is-visible {
  transform: translateX(0);
}

/* --- COMPONENTS & SECTIONS --- */

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(rgba(15, 16, 19, 0.8), rgba(15, 16, 19, 0.95)), url('../assets/images/hero-bg.webp') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
}
.hero-container {
  max-width: 900px;
}
.hero-logo img { margin: 0 auto 2rem; }
.hero-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1.5rem auto 2.5rem;
  color: var(--text-gray);
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}
@media(min-width: 768px) {
  .hero-ctas { flex-direction: row; }
}

/* Grids */
.decoreba-grid, .niveis-grid, .garantia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media(min-width: 992px) {
  .decoreba-grid, .niveis-grid, .garantia-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Niveis Timeline (Timeline Vertical Pixel-Perfect) */
.niveis-cards {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  position: relative;
  padding-left: 0;
}
/* A linha pontilhada ligando os ícones verticalmente */
.niveis-cards::before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 30px;
  left: 28px; /* Metade da largura de 56px do ícone */
  width: 0;
  border-left: 1px dashed var(--gold);
  z-index: 1;
}

.level-card {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
}
.level-card:hover { 
  transform: translateX(8px); 
}
.level-icon { 
  flex-shrink: 0; 
  position: relative;
  z-index: 2;
}
.level-icon svg {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 4px 10px rgba(244, 177, 15, 0.4));
  display: block;
}
.level-card h4 {
  font-size: 2.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.level-card p {
  color: #a0a0a0;
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
}

/* Grid Features Novo (Pixel-Perfect) */
.grid-features-novo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media(min-width: 768px) { .grid-features-novo { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media(min-width: 992px) { .grid-features-novo { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; } }

.icon-box-novo {
  background: #111216;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.icon-box-novo:hover {
  border-color: rgba(244, 177, 15, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}
.icon-box-novo::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 2.5rem;
  width: 30px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(244, 177, 15, 0.6);
}
.icon-box-novo lord-icon {
  display: block;
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 10px rgba(244, 177, 15, 0.3));
  flex-shrink: 0;
}
.icon-box-novo p {
  color: #adb5bd;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Bonus Swiper */
.bonus-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.bonus-card {
  background: #181920;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
  position: relative;
}
.bonus-card:hover {
  transform: translateY(-5px);
}
.bonus-card img {
  width: calc(100% + 3rem);
  max-width: calc(100% + 3rem);
  margin: -1.5rem -1.5rem -2rem -1.5rem;
  object-fit: cover;
  border-radius: 0;
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  min-height: 220px;
  position: relative;
  z-index: 1;
}
.bonus-card h4 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  color: #fff;
}
.bonus-card p {
  color: #c0c0c0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.bonus-card button {
  margin-top: auto;
  border-radius: 50px;
  padding: 14px;
  background-color: var(--gold) !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.bonus-card button:hover {
  opacity: 0.85;
}

/* Pricing Novo (Pixel-Perfect) */
.pricing-grid-novo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media(min-width: 992px) {
  .pricing-grid-novo {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}
.features-title {
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
  text-align: center;
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05); /* Separador sutil */
  color: #d1d5db; /* Coracinzentada */
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.features-list li:last-child {
  border-bottom: none;
}
.features-list li:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  color: #ffffff;
}
.features-list li:hover .check-circle svg {
  transform: scale(1.2) rotate(5deg);
}
.check-circle {
  flex-shrink: 0;
  margin-top: 3px;
}
.check-circle svg {
  width: 18px;
  height: 18px;
  display: block;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-cards-novo {
  display: flex;
  flex-direction: column;
  gap: 3.5rem; /* Distância entre os dois cards */
  padding-top: 1.5rem; /* Respiro para os badges absolute */
}
.price-novo-card {
  position: relative;
  background: #111115;
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem 2.5rem;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}
.price-novo-card:hover {
  transform: translateY(-15px);
}
.price-novo-card.popup-gold {
  box-shadow: inset 0 0 100px rgba(244, 177, 15, 0.08), 0 15px 50px rgba(0,0,0,0.6);
  border: 1px solid rgba(244, 177, 15, 0.15);
}
.price-novo-card.popup-gold:hover {
  box-shadow: inset 0 0 150px rgba(244, 177, 15, 0.15), 0 25px 60px rgba(0,0,0,0.8);
}
.price-novo-card.popup-dark {
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.02), 0 15px 50px rgba(0,0,0,0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #15161b;
}
.price-novo-card.popup-dark:hover {
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.06), 0 25px 60px rgba(0,0,0,0.8);
}

@keyframes pulse-badge {
  0% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); }
  100% { transform: translateX(-50%) scale(1); }
}

.price-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 30px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.3rem;
  white-space: nowrap;
}
.bg-gold {
  background-color: var(--gold);
  color: #ffffff; /* Ajustado para branco como o modelo */
  animation: pulse-badge 2.5s infinite;
}
.bg-gray {
  background-color: #2c3038;
  color: #ffffff;
}
.price-novo-content .installments {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.price-novo-content .currency {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  margin-left: 10px;
  margin-right: 2px;
}
.price-novo-content .amount {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 800;
}
.price-novo-content .vista {
  font-size: 1.1rem;
  color: #adb5bd;
}
.safe-badges {
  display: flex; justify-content: center;
}

/* Quem Somos */
.quem-somos-card {
  background: #101114; /* Tom hiper-escuro exato do design */
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
@media(min-width: 992px) {
  .quem-somos-card { grid-template-columns: 1fr 1fr; }
}
.quem-somos-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media(min-width: 992px) {
  .quem-somos-content { padding: 4.5rem 4rem; }
}
.quem-somos-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: -1px;
}
.quem-somos-linha {
  height: 2px;
  width: 140px; /* Linha mais curta e exata do modelo */
  background: var(--gold);
  margin-top: 15px;
  margin-bottom: 2.5rem;
  opacity: 0.8;
}
.quem-somos-content p {
  color: #adb5bd; /* Tom acinzentado do print */
  font-size: 0.95rem;
  line-height: 1.7;
}
.quem-somos-image {
  height: 100%;
  width: 100%;
  display: flex;
}
.quem-somos-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 2 Caminhos */
.caminhos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media(min-width: 768px) {
  .caminhos-grid { grid-template-columns: 1fr 1fr; }
}
.caminho-card {
  position: relative;
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  border-radius: var(--radius-lg);
  text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.caminho-card:hover {
  transform: translateY(-8px);
}
.caminho-card:hover .floating-icon {
  transform: scale(1.15) rotate(-5deg);
}
.caminho-card h3 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.caminho-card p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
}
.caminho-card.danger { 
  background: linear-gradient(180deg, #161821 0%, rgba(255, 0, 43, 0.15) 100%); 
  border-color: rgba(255, 0, 43, 0.2);
}
.caminho-card.danger:hover {
  box-shadow: 0 15px 35px rgba(255, 0, 43, 0.15);
  border-color: rgba(255, 0, 43, 0.4);
}
.caminho-card.success { 
  background: linear-gradient(180deg, #161821 0%, rgba(37, 211, 102, 0.15) 100%); 
  border-color: rgba(37, 211, 102, 0.2); 
}
.caminho-card.success:hover {
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.4);
}
.floating-icon {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.icon-danger { background-color: #ff003c; }
.icon-success { background-color: #25d366; }

.text-left { text-align: left; }

/* White Button */
.btn-white {
  background-color: #fff;
  color: #111;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
  padding: 18px 40px;
  border: 2px solid #fff;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-white:hover {
  background-color: transparent;
  color: #fff;
  box-shadow: 0 0 30px rgba(255,255,255,0.6);
}

/* Pais / WhatsApp */
.pais-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media(min-width: 992px) {
  .pais-grid { grid-template-columns: 1.2fr 2fr; }
}
.pais-texto {
  max-width: 450px;
}
.pais-texto h3 {
  font-size: clamp(1.7rem, 3.5vw, 2.1rem);
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}
.pais-texto p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #adb5bd;
  margin-bottom: 2rem;
}
.btn-white-pais {
  width: 100%;
  max-width: 330px;
  justify-content: center;
  font-weight: 600;
  padding: 16px 20px;
  font-size: 0.9rem;
}
.pais-slider-container {
  width: 100%;
  overflow: hidden;
}
.pais-swiper {
  padding-bottom: 20px;
}
.pais-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.pais-swiper .swiper-slide {
  width: 280px; /* Largura fixa para manter o design em deques (cards) idênticos ao print */
  transition: transform 0.3s ease;
}
.pais-swiper .swiper-slide:hover {
  transform: translateY(-5px);
}
.pais-swiper .swiper-slide img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

/* Accordion FAQ */
.accordion-container {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  background: var(--bg-dark-alt);
  overflow: hidden;
}
.accordion-header {
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--bg-dark-alt);
  transition: var(--transition);
}
.accordion-header h4 { margin: 0; font-size: 1rem; }
.accordion-header.active { color: var(--gold); }
.accordion-header .icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.accordion-header.active .icon { transform: rotate(45deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: var(--bg-dark);
}
.accordion-content p { padding: 1.2rem; margin: 0; }

/* Modals */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--bg-dark-alt);
  width: 90%; max-width: 600px;
  max-height: 80vh; overflow-y: auto;
  border-radius: var(--radius-lg);
  z-index: 1000;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.modal.active { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.modal-content { padding: 2rem; position: relative; }
.modal-close {
  position: absolute; top: 15px; right: 20px;
  font-size: 2rem; color: var(--text-gray); cursor: pointer;
}
.modal-close:hover { color: var(--text-white); }
.modal-body ul { list-style: disc; padding-left: 20px; margin-top: 10px; }

/* Video Wrapper */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.video-wrapper iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* Misc */
.logo-small { margin: 0 auto 2rem; }
.divider { width: 60px; height: 3px; background: var(--gold); margin: 0 auto; border-radius: 3px; }
.border-radius { border-radius: var(--radius-lg); overflow: hidden; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.btn-block { width: 100%; }
.btn-whatsapp { border-color: #25d366; color: #25d366; }
.btn-whatsapp:hover { background: #25d366; color: #fff; }

/* Footer */
.footer {
  background-color: #000000;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
    text-align: left;
  }
}
.footer-logo img {
  opacity: 0.8;
  filter: grayscale(100%) brightness(150%);
  transition: var(--transition);
}
.footer-logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.footer-menu h4, .footer-social h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--gold);
}
.footer-links-vertical {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links-vertical li a {
  color: #a4a4a4;
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-links-vertical li a { justify-content: flex-start; }
}
.footer-links-vertical li a:hover {
  color: #ffffff;
}
.footer-links-vertical i {
  font-size: 1.2rem;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}
.footer-line {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-bottom p, .footer-legal-links {
  font-size: 0.85rem;
  color: #a4a4a4;
  margin: 0;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 20px; right: 20px;
  background: #25d366;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }


/* --- 7. Vídeo Detalhes Exato --- */
.bg-light-pattern {
  background-color: #f2f3f5;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M200 0 L400 200 L200 400 L0 200 Z' fill='none' stroke='rgba(0,0,0,0.03)' stroke-width='1.5'/%3E%3Cpath d='M200 100 L300 200 L200 300 L100 200 Z' fill='none' stroke='rgba(0,0,0,0.02)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 600px 600px;
  background-position: center top;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.divider-circle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  z-index: 10;
}

.divider-circle-inner {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.title-detalhes {
  color: #5c646d;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.title-detalhes .text-gold {
  color: var(--gold);
  font-weight: 500;
}

.subtitle-detalhes {
  color: #a0a6b1;
  font-size: 1.1rem;
  font-weight: 400;
}

.video-shadow-box {
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-radius: 4px;
  overflow: hidden;
}

.btn-outline-double {
  background: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  border: 4px solid #f2f3f5;
  box-shadow: 0 0 0 1px var(--gold);
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-outline-double:hover {
  background: #d49808;
  box-shadow: 0 0 0 2px #d49808;
  transform: translateY(-3px);
}



/* --- 10. Prova Social (Depoimentos) --- */
.prova-social-swiper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.prova-social-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: stretch;
}
.prova-social-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.prova-social-swiper img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
