/* ===============================
   🧼 CSS BASE — Limpa Nome Desafoguei
   =============================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}

/* Remove estilos padrões de listas e links */
ul,
ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease;
}
button,
input,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ===========
   VARIÁVEIS DE TEMA
   =========== */
:root {
  /* Cores primárias */
  --primary: #f97316; /* Laranja vibrante */
  --primary-dark: #ea580c; /* Laranja mais forte */
  --secondary: #1e293b; /* Azul petróleo */

  /* Fundos e Texto */
  --background: #fff7ed; /* Creme suave */
  --text: #0f172a; /* Preto azulado */

  /* Feedback */
  --success: #22c55e;
  --danger: #ef4444;

  /* Gradiente */
  --gradient: linear-gradient(135deg, #f97316, #ea580c);

  /* Dimensões */
  --radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

  /* Espaçamento */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 4rem;

  /* Tipografia */
  --fs-sm: 0.95rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.75rem;
  --fs-xl: 2.25rem;
  --fw-normal: 400;
  --fw-semibold: 600;
  --fw-bold: 700;
}

/* ===========
   CONTAINERS
   =========== */
.container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

/* ===========
   BOTÕES PADRÕES
   =========== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-weight: var(--fw-semibold);
  transition: background 0.25s ease;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
}

/* ===========
   TIPOGRAFIA GLOBAL
   =========== */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: var(--fw-bold);
  color: var(--text);
}
h1 {
  font-size: var(--fs-xl);
}
h2 {
  font-size: var(--fs-lg);
}
h3 {
  font-size: 1.5rem;
}

p {
  font-size: var(--fs-md);
  margin-top: var(--space-sm);
  color: var(--text);
}

.kicker {
  color: var(--primary-dark);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

/* ===========
   UTILITÁRIOS
   =========== */
.text-center {
  text-align: center;
}
.mt-md {
  margin-top: var(--space-md);
}
.mt-lg {
  margin-top: var(--space-lg);
}
.hidden {
  display: none !important;
}

/* ===========
   ANIMAÇÕES REUTILIZÁVEIS
   =========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(249, 115, 22, 0.3),
      0 0 10px rgba(249, 115, 22, 0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5),
      0 0 30px rgba(249, 115, 22, 0.3);
  }
}

/* Classes utilitárias */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.entrance {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.entrance.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========
   RESPONSIVIDADE GLOBAL
   =========== */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  p {
    font-size: 1rem;
  }
}

/* ===============================
   🔝 HEADER / NAVBAR
   =============================== */
@keyframes headerSlideIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  background: var(--gradient);
  box-shadow: 0 2px 20px rgba(249, 115, 22, 0.15);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
  animation: headerSlideIn 0.6s ease-out;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 25px rgba(249, 115, 22, 0.25);
  padding: 0.5rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem var(--space-sm);
  gap: var(--space-md);
  transition: padding 0.3s ease;
}

.logo img {
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(1.1);
}

.logo:hover img {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.main-nav {
  margin: 0 auto;
}

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

.main-nav li {
  position: relative;
}

.main-nav a {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: #fff;
  position: relative;
  transition: color 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.main-nav a:not(.btn-whatsapp):hover {
  color: var(--background);
}

.main-nav a:not(.btn-whatsapp)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background: var(--background);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-nav a:not(.btn-whatsapp):hover::after {
  width: 100%;
}

.nav-whatsapp {
  display: none;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-weight: var(--fw-semibold);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* Mobile menu button */
@keyframes menuHover {
  0%,
  100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(1.05);
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 26px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  padding: 4px 0;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  opacity: 0.8;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  background: #fff;
  height: 2.5px;
  border-radius: 2px;
  position: absolute;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.menu-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle span::before {
  top: -8px;
  transform-origin: center;
}

.menu-toggle span::after {
  bottom: -8px;
  transform-origin: center;
}

.menu-toggle:hover span::before,
.menu-toggle:hover span::after {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.menu-toggle.active span {
  background: transparent;
  box-shadow: none;
}

.menu-toggle.active span::before {
  transform: rotate(45deg) translateY(0);
  top: 50%;
}

.menu-toggle.active span::after {
  transform: rotate(-45deg) translateY(0);
  bottom: auto;
  top: 50%;
}

/* Mobile behavior */
@media (max-width: 768px) {
  .header-inner {
    padding: 0.65rem var(--space-sm);
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100vh;
    background: var(--primary);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    z-index: 999;
    backdrop-filter: blur(10px);
    padding-top: 64px;
    overflow-y: auto;
    transform: translateX(100%);
  }

  .main-nav::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 50vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
  }

  .main-nav.open::before {
    pointer-events: auto;
  }

  .close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    backdrop-filter: blur(4px);
  }

  .close-menu:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(90deg);
  }

  .close-menu span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .close-menu span:first-child {
    transform: rotate(45deg);
  }

  .close-menu span:last-child {
    transform: rotate(-45deg);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
    position: relative;
    z-index: 1;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .main-nav ul {
    flex: 1;
  }

  .main-nav li {
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
  }

  .main-nav li:first-child {
    margin-top: 1rem;
  }

  .main-nav a {
    display: block;
    padding: 1rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.05rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    color: #fff;
  }

  .main-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary);
    transform: translateX(-4px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .main-nav a:not(.btn-whatsapp):hover {
    background: rgba(249, 115, 22, 0.15);
    padding-left: 1.75rem;
  }

  .main-nav a:not(.btn-whatsapp):hover::before {
    transform: translateX(0);
  }

  .main-nav a:not(.btn-whatsapp)::after {
    display: none;
  }

  .nav-whatsapp {
    display: list-item;
    border-bottom: none;
    padding: 1.2rem 1.5rem;
    margin-top: 0.5rem;
    background: rgba(249, 115, 22, 0.12);
  }

  .nav-whatsapp a {
    padding: 0;
    border-radius: var(--radius);
  }

  .nav-whatsapp .btn-whatsapp {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    display: block;
    background: #25d366;
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  }

  .nav-whatsapp .btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }

  .menu-toggle {
    display: block;
  }

  .btn-whatsapp {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .main-nav {
    width: 70vw;
  }

  .main-nav::before {
    width: 30vw;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0.5rem var(--space-sm);
  }

  .main-nav {
    width: 75vw;
  }

  .main-nav::before {
    width: 25vw;
  }

  .main-nav ul {
    gap: 0;
  }

  .main-nav a {
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
  }

  .nav-whatsapp {
    padding: 1rem 1.25rem;
  }

  .nav-whatsapp .btn-whatsapp {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }

  .btn-whatsapp {
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
  }

  .logo img {
    width: 130px;
    height: auto;
  }
}

/* ===============================
   🧭 HERO SECTION
   =============================== */
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: var(--space-xl) 0;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: var(--space-md);
}

.hero-video {
  position: relative;
}

.video-wrap {
   cursor: pointer;
   position: relative;
   overflow: hidden;
   border-radius: var(--radius);
   aspect-ratio: 16 / 9;
   display: flex;
   align-items: center;
   justify-content: center;
}

.video-wrap iframe {
   width: 100%;
   height: 100%;
   border: none;
}
.video-thumb {
  width: 100%;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}
.video-wrap:hover .video-thumb {
  transform: scale(1.02);
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  transition: opacity 0.3s ease;
}
.video-wrap:hover .play-btn {
  opacity: 1;
}

/* Trust logos */
.trust-logos img {
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.trust-logos img:hover {
  opacity: 1;
}

/* Responsividade hero */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.65rem;
  }
}

/* ===============================
   ⚙️ COMO FUNCIONA
   =============================== */
.como-funciona {
  background: #fff;
  padding: var(--space-xl) 0;
}

.section-header {
  animation: slideUp 0.8s ease both;
}

.section-header h2 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

.section-header h2 .highlight {
  position: relative;
}

.section-header h2 .highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: slideInRight 0.8s ease 0.5s forwards;
}

.section-header p {
  color: #475569;
  max-width: 600px;
  margin-inline: auto;
  animation: fadeIn 0.8s ease 0.3s both;
}

.steps-grid {
  display: grid;
  gap: 2rem;
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.step-card {
  background: var(--background);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-md);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideUp 0.6s ease both;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(249, 115, 22, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.step-card:hover::before {
  left: 100%;
}

.step-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.15);
}

.step-card:nth-child(1) {
  animation-delay: 0.1s;
}

.step-card:nth-child(2) {
  animation-delay: 0.2s;
}

.step-card:nth-child(3) {
  animation-delay: 0.3s;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
  animation: pulse 3s infinite ease-in-out;
  transition: all 0.4s ease;
  position: relative;
}

.icon-circle svg {
  animation: rotateIn 0.8s ease-out;
}

.step-card:hover .icon-circle {
  animation: bounce 0.6s ease infinite;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.step-card h3 {
  margin-top: var(--space-xs);
  font-size: 1.2rem;
  color: var(--secondary);
}

.step-card p {
  margin-top: var(--space-xs);
  font-size: var(--fs-sm);
  color: #475569;
}

/* ===============================
   ⭐ BENEFÍCIOS
   =============================== */
.beneficios {
  background: var(--background);
  padding: var(--space-xl) 0;
}

.highlight {
  color: var(--primary-dark);
}

.benefits-grid {
  display: grid;
  gap: 2rem;
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  padding: var(--space-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.6s ease both;
}

.benefit-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.12);
}

.benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}
.benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}
.benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}
.benefit-card:nth-child(4) {
  animation-delay: 0.4s;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
  animation: pulse 3.5s infinite ease-in-out;
  transition: all 0.4s ease;
  position: relative;
}

.benefit-icon svg {
  animation: scaleIn 0.6s ease-out;
}

.benefit-card:hover .benefit-icon {
  animation: bounce 0.6s ease infinite;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.benefit-card h3 {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.benefit-card p {
  color: #475569;
  font-size: var(--fs-sm);
}

/* ===============================
   💬 DEPOIMENTOS
   =============================== */
.depoimentos {
  background: #fff;
  padding: var(--space-xl) 0;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--background);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.6s ease both;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card:hover {
  transform: translateY(-8px) rotateX(5deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}
.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}
.testimonial-card:nth-child(3) {
  animation-delay: 0.3s;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.testimonial-header img {
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: cover;
}

.testimonial-header h3 {
  margin: 0;
  color: var(--secondary);
  font-size: 1rem;
}

.testimonial-header p {
  font-size: var(--fs-sm);
  color: #64748b;
}

.testimonial-text {
  font-style: italic;
  color: #334155;
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.stars {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  animation: slideUp 0.6s ease 0.5s both;
}

.stars svg {
  animation: scaleIn 0.5s ease backwards;
  transition: all 0.3s ease;
}

.stars svg:nth-child(1) {
  animation-delay: 0.5s;
}
.stars svg:nth-child(2) {
  animation-delay: 0.55s;
}
.stars svg:nth-child(3) {
  animation-delay: 0.6s;
}
.stars svg:nth-child(4) {
  animation-delay: 0.65s;
}
.stars svg:nth-child(5) {
  animation-delay: 0.7s;
}

.testimonial-card:hover .stars svg {
  animation: bounce 0.6s ease infinite;
  filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.5));
}

/* ===============================
   🚀 CTA FINAL
   =============================== */
.cta-final {
  background: var(--gradient);
  color: #fff;
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.cta-subtext {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  color: #fff7ed;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #20c65a;
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.cta-trust {
  margin-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  opacity: 0.95;
  animation: slideUp 0.8s ease 0.3s both;
}

.cta-trust svg {
  animation: float 3s ease-in-out infinite;
}

.cta-trust img {
   filter: brightness(0) invert(1);
}

.disclaimer-banner {
   margin-top: var(--space-lg);
   padding: 1rem;
   background: rgba(255, 255, 255, 0.1);
   border-left: 4px solid #fff7ed;
   border-radius: 4px;
   font-size: 0.85rem;
   line-height: 1.5;
   color: #fff;
   backdrop-filter: blur(4px);
   animation: slideUp 0.8s ease 0.4s both;
}

.disclaimer-banner p {
   margin: 0;
   font-size: 0.85rem;
   color: #fff;
}

.disclaimer-banner strong {
   color: #fff;
}
/* ===============================
   🏢 FOOTER MODERNO
   =============================== */
.footer {
  background: var(--gradient);
  color: #fff;
  padding: 4rem 1rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--background);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
   margin-bottom: 1rem;
   display: flex;
   align-items: center;
   gap: 0.75rem;
}

.footer-col a {
   color: #fff;
   text-decoration: none;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   gap: 0.5rem;
   font-weight: 500;
}

.footer-col a:hover {
   color: var(--background);
   text-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
   transform: translateX(4px);
}

.footer-col .contact-link {
   gap: 0.75rem;
}

.footer-col .contact-link svg {
   width: 20px;
   height: 20px;
   flex-shrink: 0;
   transition: transform 0.3s ease;
}

.footer-col li:hover .contact-link svg {
   transform: scale(1.15) rotate(5deg);
}

.cnpj-info {
   opacity: 0.9;
   font-size: 0.95rem;
}

.cnpj-info svg {
   width: 20px;
   height: 20px;
   flex-shrink: 0;
}

.address-info {
   opacity: 0.9;
   font-size: 0.85rem;
   margin-top: 0.5rem;
}

.address-info svg {
   width: 20px;
   height: 20px;
   flex-shrink: 0;
   margin-top: 2px;
}

.footer-logo img {
  filter: brightness(1.1);
  transition: transform 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.05);
}

.footer-col.brand p {
  margin-top: 0.5rem;
  line-height: 1.5;
  color: #e2e8f0;
}

.social-icons {
   display: flex;
   gap: 1.2rem;
   margin-top: 1rem;
}

.social-icons a {
   width: 44px;
   height: 44px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.12);
   border: 1.5px solid rgba(255, 255, 255, 0.2);
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   color: #fff;
}

.social-icons a:hover {
   background: var(--primary);
   border-color: var(--primary);
   transform: translateY(-6px) scale(1.1);
   box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.social-icons svg {
   width: 24px;
   height: 24px;
   transition: transform 0.3s ease;
}

.social-icons a:hover svg {
   transform: rotate(10deg) scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-bottom p {
  color: var(--background);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
   font-size: 1.1rem;
   color: var(--background);
}

.footer-disclaimer {
   background: rgba(0, 0, 0, 0.2);
   padding: 1.5rem;
   border-radius: var(--radius);
   margin-bottom: 2rem;
   font-size: 0.8rem;
   line-height: 1.6;
   color: #fff;
   border-left: 3px solid #fbbf24;
}

.footer-disclaimer p {
   margin: 0;
   font-size: 0.8rem;
   color: #fff;
}

.footer-terms {
   padding: 1.5rem;
   background: rgba(0, 0, 0, 0.3);
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   margin-bottom: 1rem;
}

.footer-terms p {
   margin: 0;
   font-size: 0.75rem;
   color: #999;
   line-height: 1.6;
}

.footer-terms strong {
   color: #bbb;
}

/* ===============================
   📋 MODAL DE DISCLAIMER
   =============================== */
.modal {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: rgba(0, 0, 0, 0.6);
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 10000;
   padding: 1rem;
   animation: fadeIn 0.3s ease;
}

.modal.hidden {
   display: none;
}

.modal-content {
   background: #fff;
   border-radius: var(--radius);
   padding: 2rem;
   max-width: 500px;
   width: 100%;
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
   position: relative;
   animation: scaleIn 0.3s ease;
}

.modal-close {
   position: absolute;
   top: 1rem;
   right: 1rem;
   background: none;
   border: none;
   font-size: 1.5rem;
   cursor: pointer;
   color: #666;
   transition: color 0.3s ease;
}

.modal-close:hover {
   color: #000;
}

.modal-content h3 {
   color: var(--primary-dark);
   margin-bottom: 1rem;
   font-size: 1.3rem;
}

.modal-content p {
   color: #333;
   margin: 0.8rem 0;
   font-size: 0.95rem;
   line-height: 1.6;
}

.modal-content ul {
   list-style: none;
   margin: 1rem 0;
   padding: 0;
}

.modal-content ul li {
   color: #555;
   margin: 0.6rem 0;
   font-size: 0.9rem;
   padding-left: 0;
}

/* ===============================
   📋 SEÇÃO PROCESSO
   =============================== */
.processo-section {
  background: #f8f9fa;
  padding: var(--space-xl) 0;
}

.processo-content {
  display: grid;
  gap: 2rem;
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .processo-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .processo-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.processo-card {
  background: #fff;
  padding: var(--space-md);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 3px solid var(--primary);
}

.processo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.15);
}

.processo-card h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.processo-card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===============================
   💰 SEÇÃO PREÇOS
   =============================== */
.pricing-section {
  background: #fff;
  padding: var(--space-xl) 0;
}

.pricing-cards {
  display: grid;
  gap: 2rem;
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-inline: auto;
  }
}

.pricing-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(249, 115, 22, 0.02) 100%);
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .pricing-card.featured {
    scale: 1.05;
  }
}

.pricing-card h3 {
  color: var(--primary-dark);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.pricing-type {
  color: #718096;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-value {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.3rem;
  margin: 1.5rem 0;
}

.pricing-value .currency {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.3rem;
}

.pricing-value .amount {
  font-size: 3rem;
  color: var(--primary-dark);
  font-weight: 800;
  line-height: 1;
}

.pricing-note {
  color: #718096;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-card .btn {
  width: 100%;
  padding: 1rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
   margin-top: 2rem;
}

.modal-cancel {
   flex: 1;
   padding: 0.75rem 1.5rem;
   background: #e5e7eb;
   color: #333;
   border: none;
   border-radius: var(--radius);
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
}

.modal-cancel:hover {
   background: #d1d5db;
}

.modal-confirm {
   flex: 1;
   padding: 0.75rem 1.5rem;
   background: var(--gradient);
   color: #fff;
   border: none;
   border-radius: var(--radius);
   font-weight: 600;
   cursor: pointer;
   text-align: center;
   text-decoration: none;
   transition: all 0.3s ease;
   display: inline-flex;
   align-items: center;
   justify-content: center;
}

.modal-confirm:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}
