/* CSS Base Otimizado - Substitui Tailwind */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.bottom-0 { bottom: 0; }
.right-0 { right: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.w-full { width: 100%; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.h-auto { height: auto; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-12 { height: 3rem; }
.h-20 { height: 5rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mr-4 { margin-right: 1rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.pr-0 { padding-right: 0; }
.pt-8 { padding-top: 2rem; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 2rem; }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.leading-tight { line-height: 1.25; }
.italic { font-style: italic; }
.text-white { color: rgb(255 255 255); }
.text-gray-300 { color: rgb(209 213 219); }
.text-gray-400 { color: rgb(156 163 175); }
.text-gray-500 { color: rgb(107 114 128); }
.text-orange-500 { color: rgb(249 115 22); }
.bg-black { background-color: rgb(0 0 0); }
.bg-gray-800 { background-color: rgb(31 41 55); }
.bg-gray-900 { background-color: rgb(17 24 39); }
.bg-orange-500 { background-color: rgb(249 115 22); }
.bg-opacity-50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-opacity-90 { background-color: rgba(0, 0, 0, 0.9); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-black { --tw-gradient-from: #000; --tw-gradient-to: rgba(0, 0, 0, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-transparent { --tw-gradient-to: transparent; }
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-gray-800 { border-color: rgb(31 41 55); }
.border-orange-500 { border-color: rgb(249 115 22); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.overflow-hidden { overflow: hidden; }
.opacity-20 { opacity: 0.2; }
.hover\:text-orange-500:hover { color: rgb(249 115 22); }
.hover\:bg-orange-600:hover { background-color: rgb(234 88 12); }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
.space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }

@media (min-width: 768px) {
    .md\:mb-0 { margin-bottom: 0; }
    .md\:flex { display: flex; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:flex-row { flex-direction: row; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}

@media (min-width: 1024px) {
    .lg\:mb-0 { margin-bottom: 0; }
    .lg\:w-1\/2 { width: 50%; }
    .lg\:flex-row { flex-direction: row; }
    .lg\:pr-10 { padding-right: 2.5rem; }
    .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .lg\:text-5xl { font-size: 3rem; line-height: 1; }
}
/* =========================
   CSS Base e Variáveis
   ========================= */
:root {
  --orange: #ff6600;
  --orange-bright: #ff4500;
  --orange-neon: #ff8c00;
  --dark-bg: #121212;
  --darker-bg: #0a0a0a;
  --card-bg: #1a1a1a;
  --text-light: #ffffff;
  --text-gray: #aaaaaa;
  --border-color: rgba(255, 102, 0, 0.3);
  --black: #000000;
  --light-gray: #f5f5f5;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: var(--black);
  overflow-x: hidden;
}

.texture-bg {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* =========================
   Header e Countdown (Melhorado)
   ========================= */
header {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 102, 0, 0.2);
}

.header-countdown {
  display: flex;
  gap: 15px;
  flex: 1;
  justify-content: flex-end;
  max-width: 100%;
  margin-left: 10px;
}

.countdown-timer {
  display: flex;
  gap: 6px;
  align-items: center;
  align-self: center;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(255, 102, 0, 0.15),
    rgba(255, 102, 0, 0.05)
  );
  border: 1px solid rgba(255, 102, 0, 0.4);
  border-radius: 8px;
  padding: 8px 10px;
  min-width: 55px;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.1);
}

.countdown-number {
  font-size: 16px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 0 8px rgba(255, 102, 0, 0.3);
}

.countdown-label {
  font-size: 9px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
  font-weight: 600;
}

.countdown-separator {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(255, 102, 0, 0.5);
}

.progress-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1;
}

.progress-container {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  overflow: hidden;
  height: 10px;
  border: 1px solid rgba(255, 102, 0, 0.3);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-top: 10px;
}

.progress-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  animation: progressShine 2s infinite;
}

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

.progress-bar {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--orange-bright) 0%,
    var(--orange) 50%,
    #ff8c42 100%
  );
  border-radius: 12px;
  transition: width 0.5s ease;
  width: 94%;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
  position: relative;
}

.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border-radius: 12px;
}

.progress-text {
  font-size: 12px;
  color: var(--orange);
  margin-top: 6px;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
  text-align: right;
}

.progress-percentage {
  font-size: 14px;
  color: var(--orange);
  font-weight: 800;
  margin-right: 5px;
}

/* =========================
   Seções e Backgrounds
   ========================= */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  /* Imagem de fundo movida para cá */
  background-image: url("./CS - Imagem A.png");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-top: 130px;
  position: relative;
  z-index: 10;
}

.section-with-bg-image {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  /* Imagem de fundo movida para cá */
  background-image: url("./CS - Imagem B.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================
   Carrossel (Melhorado)
   ========================= */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0 10px;
}

.entrepreneur-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 220px;
  transition: all 0.3s ease;
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.entrepreneur-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
  border-color: var(--orange);
}

.entrepreneur-image {
  width: 100%;
  height: 320px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.entrepreneur-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.entrepreneur-image img[src*="3.png"] {
  object-fit: none;
  height: 100%;
  object-position: center;
}

/* Ajustes específicos para centralizar melhor cada imagem */
.entrepreneur-image img[src*="1.png"],
.entrepreneur-image img[src*="2.png"],
.entrepreneur-image img[src*="7.png"],
.entrepreneur-image img[src*="8.png"],
.entrepreneur-image img[src*="9.png"],
.entrepreneur-image img[src*="5.png"], 
.entrepreneur-image img[src*="4.png"] {
  object-position: center top;
}



.entrepreneur-image img[src*="6.png"] {
  object-position: center;
}

.entrepreneur-info {
  padding: 1.5rem;
}

.entrepreneur-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.entrepreneur-position {
  font-size: 0.875rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.entrepreneur-company {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.entrepreneur-specialty {
  font-size: 0.875rem;
  background-color: rgba(255, 102, 0, 0.1);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 102, 0, 0.2);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 1rem;
}

.carousel-button {
  background-color: rgba(255, 102, 0, 0.2);
  color: var(--text-light);
  border: 1px solid rgba(255, 102, 0, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-button:hover {
  background-color: var(--orange);
  color: var(--text-light);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--orange);
  transform: scale(1.2);
}

/* =========================
   Componentes e Utilitários
   ========================= */
.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--orange);
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.vsl-container {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 102, 0, 0.3);
  transform: scale(1);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.vsl-container:hover {
  transform: scale(1.02);
}

.section-divider {
  height: 5px;
  width: 100px;
  background-color: var(--orange);
  margin: 1.5rem 0;
}

.faq-item {
  border-bottom: 1px solid #333;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.price-card {
  background: linear-gradient(145deg, var(--card-bg), #222222);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4),
    0 5px 15px rgba(255, 102, 0, 0.1);
  transition: all 0.4s ease;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
    0 10px 25px rgba(255, 102, 0, 0.2);
  border-color: var(--orange);
}

.price-header {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shine 3s infinite linear;
}

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

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5rem;
}

.price-period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.price-features {
  padding: 2rem;
}

.price-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-feature-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.feature-icon {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  box-shadow: 0 4px 10px rgba(255, 69, 0, 0.3);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--text-light);
}

.feature-text {
  flex: 1;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.feature-description {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.price-footer {
  padding: 1.5rem 2rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 102, 0, 0.2);
}

/* =========================
   Animações e Responsividade
   ========================= */
.animate-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-element.animated {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}
.delay-200 {
  transition-delay: 0.2s;
}
.delay-300 {
  transition-delay: 0.3s;
}
.delay-400 {
  transition-delay: 0.4s;
}
.delay-500 {
  transition-delay: 0.5s;
}

@media (max-width: 768px) {
  .carousel-slide {
    gap: 0;
    justify-content: center;
  }

  .entrepreneur-card {
    max-width: 280px;
    margin: 0 auto;
  }

  .header-countdown {
    gap: 8px;
    flex-direction: column;
  }

  .countdown-timer {
    gap: 4px;
  }

  .countdown-item {
    padding: 6px 8px;
    min-width: 45px;
  }

  .countdown-number {
    font-size: 14px;
  }

  .countdown-label {
    font-size: 8px;
  }

  .progress-section {
    margin-top: 8px;
  }

  .progress-container {
    height: 8px;
  }

  .progress-text {
    font-size: 11px;
  }

  .progress-percentage {
    font-size: 12px;
  }

  .section-with-bg-image {
    min-height: auto;
    padding: 3rem 0;
  }

  .price-card {
    max-width: 100%;
    margin: 0 1rem;
  }

  .price-value {
    font-size: 2rem;
  }

  .price-features {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-countdown {
    gap: 6px;
    flex-direction: column;
  }

  .countdown-item {
    padding: 4px 6px;
    min-width: 40px;
  }

  .countdown-number {
    font-size: 12px;
  }

  .countdown-label {
    font-size: 7px;
  }

  .progress-section {
    max-width: 100%;
  }

  .progress-container {
    height: 6px;
  }
}