:root {
  /* Cores principais */
  --primary-100: hsl(261, 61.8%, 23.6%);
  /* Roxo escuro - #4a148c */
  --primary-200: hsl(261, 61.8%, 38.2%);
  /* Roxo médio */
  --primary-300: hsl(261, 61.8%, 61.8%);
  /* Roxo claro */

  /* Cores de destaque */
  --accent-100: hsl(213, 100%, 38.2%);
  /* Azul principal - #338cff */
  --accent-200: hsl(213, 61.8%, 61.8%);
  /* Azul suave */
  --accent-300: hsl(213, 38.2%, 85.4%);
  /* Azul muito claro */

  /* Tons neutros */
  --neutral-100: hsl(0, 0%, 13.6%);
  /* Cinza muito escuro */
  --neutral-200: hsl(0, 0%, 38.2%);
  /* Cinza médio */
  --neutral-300: hsl(0, 0%, 61.8%);
  /* Cinza claro */
  --neutral-400: hsl(0, 0%, 98.2%);
  /* Quase branco */

  /* Cores de feedback */
  --success: hsl(150, 61.8%, 38.2%);
  --warning: hsl(138, 59%, 38%);
  --error: hsl(0, 61.8%, 38.2%);
}

/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.618;
  color: var(--neutral-100);
  background-color: var(--neutral-400);
  font-size: 62.5%;
  cursor: default;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Layout geral */
.container {
  max-width : 1200px;
  margin    : 0 auto;
  padding   : 1.618rem;
  /* width     : 90%; */
}

header,
section,
footer {
  padding: 1.618rem 2.618rem 0 2.618rem;
  color: var(--neutral-100);
}

h1,
h2,
h3
{
  margin-bottom: 1.618rem;
}

p {
  font-size: 1.1618rem;
}

.capitalize {
  text-transform  : capitalize;
  font-weight     : bold;
  font-size       : 3.2rem;
  line-height     : 1.2rem;
  position        : relative;
  top             : 0.618rem;
}

/* ====================== HERO ====================== */
.hero {
  background-color: #ffffff;
  padding: 0 0 3rem 0;
}

.hero-content {
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  flex-wrap       : wrap !important;
  gap             : 0.618rem;
}

.hero-description {
  font-size: 1rem;
  color: var(--neutral-200);
  text-align: justify;
  margin-bottom: 1rem;
}

.hero-text {
  flex: 1 1 300px;
  min-width: 300px;
}

.hero-type {
  font-size: 1.1618rem;
  color: var(--neutral-200);
  font-weight: 700;
  text-align: left;
  margin-bottom: 0;
}

.hero-title {
  font-size: 2.618rem;
  color: var(--accent-100);
  margin-bottom: 1.618rem;
  text-align: left;
}

.hero-subtitle {
  font-size: 1.1618rem;
  color: var(--neutral-100);
  margin-bottom: 1.618rem;
  line-height: 1.618;
  text-align: left;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.618rem;
}

.cta-button {
  background-color: var(--primary-100);
  color: #ffffff;
  padding: 1rem 1.618rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: var(--primary-200);
}

.hero-proof {
  font-size: 0.875rem;
  color: var(--neutral-300);
  max-width: 261.8px;
  text-align: center;
  min-height: 100%;
  margin: 1.618rem 0;
}

.hero-image {
  flex: 1 1 261.8px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 80%;
  border-radius: 10px;
  object-fit: cover;
}

/* ====================== BENEFITS ====================== */
.benefits {
  padding: 0 0 3rem 0;
  background-color: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #111111;
  margin-bottom: 3rem;
  line-height: 1.3;
}

.benefits-list {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.benefits-list li {
  list-style: none;
}

.benefit-item {
  flex: 1 1 300px;
  /* Responsivo, mínimo de 300px */
  padding: 2rem 1rem;
  background-color: #f9f9f9;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid var(--accent-100);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.25rem;
  color: var(--accent-200);
  margin-bottom: 1rem;
}

.benefit-description {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.5;
  max-width: 300px;
  margin: 0 auto;
}

.benefit-section {
  padding: 1rem 0 1rem 0;
  background-color: #fff;
  margin: 0;
  text-align: left;
}

.benefit-section {
  font-size: .9rem;
}

.benefit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  /* Responsivo */
}

.benefit-row.reverse {
  flex-direction: row-reverse;
}

.benefit-text {
  flex: 1 1 500px;
}

.benefit-title {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: var(--accent-200);
  text-align: center;
}

.benefit-description {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--neutral-200);
  line-height: 1.618;
}

.benefit-list {
  list-style: disc inside;
  margin-bottom: 1.5rem;
  color: #444;
}

.benefit-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 2rem;
  list-style: none;
}

.benefit-list li::before {
  content: "✓";
  color: var(--accent-100);
  position: absolute;
  left: 0;
}

.btn-cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary-200);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn-cta:hover {
  background-color: var(--primary-300);
}

.benefit-image {
  flex: 1 1 300px;
  text-align: center;
}

.benefit-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  /* object-fit: cover; */
}

/* ====================== TESTIMONIALS ====================== */
.testimonials-section {
  padding: 1rem 0;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent-200);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--neutral-200);
  margin-bottom: 3rem;
  height: auto;

}

.testimonials-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  /* Responsivo */
}

.testimonial-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 2rem;
  max-width: 350px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  font-size: 1.25rem;
  color: #FFD700;
  /* Dourado */
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

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

.author-info strong {
  font-size: 1rem;
  color: #111;
}

.author-info span {
  display: block;
  font-size: 0.875rem;
  color: #777;
}

/* FAQ SECTION */
.faq-section {
  padding: 4rem 0;
  background-color: var(--neutral-400);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.618rem;
}

.faq-title {
  font-size: 2.618rem;
  color: var(--accent-200);
  text-align: center;
  margin-bottom: 1.618rem;
}

.faq-description {
  font-size: 1rem;
  color: var(--neutral-200);
  text-align: center;
  margin-bottom: 3.236rem;
  line-height: 1.618;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-bottom: 1px solid var(--neutral-300);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--neutral-100);
  font-size: 1.1618rem;
  font-weight: 500;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-question.active .faq-question {
  padding-bottom: .618rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--neutral-200);
  font-size: 1rem;
  /* line-height: 1.618; */
  /* padding: 0 1rem; */
  opacity: 0;
  transform: translateY(-10px);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  /* padding-top: 1rem; */
  opacity: 1;
  transform: translateY(0);
}

.faq-cta {
  text-align: center;
  margin-top: 2.618rem;
}

/* HISTORY SECTION */
.history-section {
  padding: 0rem 0;
  background-color: var(--neutral-400);
}

.history-content {
  display: flex;
  flex-direction: column;
  gap: 1.618rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.618rem;
  padding-bottom: 1.618rem;
}

.history-item {
  display: flex;
  align-items: center;
  /* gap: 1.618rem; */
  /* padding: 1.618rem; */
}

.history-item:nth-child(even) {
  flex-direction: row-reverse;
}

.history-text {
  flex: 0 1 50%;
  padding: 1.618rem;
}

.history-title {
  font-size: 1.618rem;
  color: var(--accent-100);
  margin-bottom: 1rem;
}

.history-description {
  font-size: 1rem;
  line-height: 1.618;
  color: var(--neutral-200);
  text-align: justify;
}

.history-text {
  text-align: justify;
  margin-bottom: .618rem;
  padding: 0 10px 0 10px;
  font-size: 1rem !important;
}

.section-s-title {
  font-size: 1.1rem;
}

.history-image {
  flex: 0 1 50%;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
}

.history-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* WHY CLICK SECTION */
.why-click-section {
  padding: 1rem 0 1rem 0;
  background-color: var(--neutral-300);
  text-align: center;
  position: relative;
  color: #fff;
  font-size: .9rem;
}

.why-click-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Overlay escuro */
}

.why-click-section .container {
  position: relative;
  z-index: 1;
  /* Coloca o conteúdo acima do overlay */
}

.why-click-title {
  font-size: 2.618rem;
  color: #ffffff;
  margin-bottom: 1.618rem;
  line-height: 1.2;
}

.why-click-subtitle {
  font-size: 1.1618rem;
  color: #ffffff;
  margin-bottom: 1.618rem;
}

.why-click-title-price {
  font-size: 4.618rem;
  color: #ffffff;
  margin-bottom: 1.618rem;
  line-height: 1.2;
}

.why-click-description {
  font-size: 1.1618rem;
  color: #ffffff;
  margin-bottom: 2.618rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.618;
  opacity: 0.9;
}

.why-click-cta {
  margin-top: 2.618rem;
}

.why-click-section .cta-button {
  background-color: var(--primary-100);
  font-size: 1rem;
  padding: 1rem 2.618rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.why-click-section .cta-button:hover {
  background-color: var(--primary-200);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.why-click-description-cronometer {
  font-size: 1.618rem;
  color: #ffffff;
  margin: 2.618rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 300px;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.why-click-description-cronometer span {
  display: block;
}

.why-click-description-cronometer .timer {
  font-size: 2.618rem;
  font-weight: bold;
  color: var(--accent-300);
}

/* Visitantes ao vivo - Flutuante */
.live-visitors {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.618rem;
  padding: 0.618rem 1rem;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.live-visitors:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.visitors-count {
  color: #ffffff;
  font-size: 0.9rem;
  white-space: nowrap;
}

.cta-microcopy {
  margin-top: 0.618rem;
  color: var(--neutral-200);
  text-align: left;
}

.cta-microcopy p {
  font-size: 0.9rem !important;  
}

.countdown-wrapper {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.618rem;
  border-radius: 10px;
  margin: 2.618rem 0;
}

.countdown-title {
  color: var(--accent-300);
  font-size: 1.1618rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.timer-block {
  background: var(--accent-100);
  padding: 1.618rem 2.618rem;
  border-radius: 5px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.timer {
  font-size: 3.236rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-subtitle {
  color: var(--accent-300);
  font-size: 0.9rem;
  margin-top: 1rem;
  font-style: italic;
}

.urgency-badge {
  background    : var(--error);
  color         : white;
  padding       : 1.5rem 0;
  border-radius : 5px;
  display       : inline-block;
  margin-bottom : 1.618rem;
  font-weight   : bold;
  font-size     : 1.1618rem;
  animation     : shake 5s infinite;
  width         : 50%;
}

.highlight-text {
  color: var(--accent-100);
  font-weight: bold;
}

.emotional-trigger {
  font-style: italic;
  color: var(--neutral-100);
  margin: 1.618rem 0;
  text-align: center;
  font-size: 1.1618rem;
}

.scarcity-badge {
  background: var(--warning);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  font-size: 0.8rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* Formas de Pagamento */
.payment-methods {
  margin: 1.618rem auto;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  max-width: 400px;
}

.payment-title {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  opacity: 0.9;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.payment-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.payment-icon img {
  /* width: 40px;
    height: 40px; */
  object-fit: contain;
  filter: brightness(0) invert(1);
  /* Deixa os ícones brancos */
  opacity: 0.9;
  transition: all 0.3s ease;
}

.payment-icon span {
  color: #ffffff;
  font-size: 0.8rem;
  opacity: 0.8;
}

.payment-icon:hover img {
  transform: translateY(-3px);
  opacity: 1;
}

.cta-button.warning {
  background-color: var(--success);
  color: #ffffff;
  padding: 2rem;
}

.whatsapp-float {
  position  : fixed;
  width     : 48px;
  height    : 48px;
  bottom    : 62px;
  right     : 20px;
  background-color: #25d366;
  color           : #FFF;
  border-radius   : 50%;
  text-align      : center;
  font-size       : 27px;
  box-shadow      : 2px 2px 3px #999;
  z-index         : 100;
  display         : flex;
  align-items     : center;
  justify-content : center;
  text-decoration : none;
  transition      : all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

.whatsapp-float i {
  margin-top: 2px;
}

/* Ajustes gerais para mobile */
@media (max-width: 768px) {

  /* Container e espaçamentos */
  .container {
    padding: 1rem;
    width: 100%;
  }

  /* Hero Section */
  .hero {
    padding: 0;
  }

  .hero-type {
    text-align: center;
    font-size: 1.618rem;
    border-bottom: 1px solid var(--neutral-200);
    margin-bottom: 1rem;
  }

  .hero-content {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-text {
    text-align: center;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.4;
    text-align: center;
  }

  .history-text {
    text-align: justify;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .hero-badge {
    margin: 1rem auto;
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .cta-button {
    width: 100%;
    max-width: 430px;
    padding: 1rem;
    font-size: 1rem;
  }

  /* History Section */
  .history-section {
    padding: 2rem 0;
  }

  .history-content {
    gap: 2rem;
  }

  .history-item {
    flex-direction: column !important;
  }

  .history-text {
    padding: 0;
  }

  .history-image {
    height: 200px;
    width: 100%;
  }

  .benefits,
  .benefit-section {
    padding: 0;
  }

  /* Benefits Section */
  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
  }

  .benefit-item {
    max-width: 100%;
  }

  .benefit-image img {
    width: 61%;
    margin: 0 auto;
    /* height: 100%; */
    /* object-fit: cover; */
  }

  /* Testimonials Section */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .testimonial-card {
    width: 100%;
  }

  /* FAQ Section */
  .faq-section {
    padding: 2rem 0;
  }

  .faq-container {
    padding: 1rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1rem 0;
  }

  /* Why Click Section */
  .why-click-section {
    padding: 2rem 0;
  }

  .why-click-title {
    font-size: 1.618rem;
    padding: 0 1rem;
  }

  .why-click-title-price {
    font-size: 3rem;
  }

  .countdown-wrapper {
    margin: 1.618rem 1rem;
  }

  .timer-block {
    padding: 1rem 1.618rem;
  }

  .timer {
    font-size: 2rem;
  }

  /* Visitantes ao vivo */
  .live-visitors {
    bottom: 10px;
    left: 10px;
    right: 10px;
    font-size: 0.8rem;
    padding: 0.5rem;
  }

  .whatsapp-float {
    bottom    : 50%;
  }
  
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 480px) {

  /* title */
  .hero-title {
    font-size: 1.618rem;
    text-align: center;
  }

  .section-title {
    font-size: 1.618rem;
    /* padding: 0 0.5rem; */
    text-align: center;
  }

  /* subtitle */
  .hero-subtitle {
    font-size: 1rem;
    text-align: justify;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .section-s-title {
    font-size: 1.2rem;
    text-align: center;
  }

  /* cta group */
  .hero-cta-group {
    gap: 0.618rem;
  }

  .history-title {
    font-size: 1.3rem;
    text-align: center;
  }

  .history-description {
    font-size: 1rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .why-click-title-price {
    font-size: 2.618rem;
  }

  .payment-methods {
    padding: 0.8rem;
  }

  .payment-icons {
    gap: 1rem;
  }

  .cta-microcopy {
    font-size: 1rem;
    text-align: left;
  }

  /* Melhor visualização do contador flutuante */
  .live-visitors {
    width: calc(100% - 20px);
    text-align: center;
    justify-content: center;
  }

  .whatsapp-float {
    bottom  : 90%;
    right   : 5px;
  }

}

/* Ajustes de orientação landscape */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-image {
    max-width: 40%;
  }

  .live-visitors {
    display: none;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

/* Responsivo para o indicador flutuante */
@media (max-width: 768px) {
  .live-visitors {
    bottom: 10px;
    left: 10px;
    padding: 0.5rem 0.8rem;
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  2%,
  6% {
    transform: translateX(-3px);
  }

  4%,
  8% {
    transform: translateX(3px);
  }

  10% {
    transform: translateX(0);
  }
}