/* 

---------------------------

f
   🔹 RESET E BASE
--------------------------- */
@font-face {
  font-family: "CanvasRegular";
  src: url("CanvaSans-Regular.otf") format("opentype"); font-weight: normal;
}

* {

  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "CanvasRegular", "Inter", sans-serif;
  font-smooth: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



body {
  font-family: "CanvasRegular", sans-serif;
  background-color: #0a0a0a;
  color: #f9f9f9;
  overflow-x: hidden;
  max-width: 100%;
  
}

main {
  /* min-h-screen */
  min-height: 100vh;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;


  /* bg-gradient-to-b + from-background + via-secondary/20 + to-background */
  background: linear-gradient(
    to bottom,
    var(--color-background, #0a0a0a) 0%,        /* from-background */
    rgba(100, 100, 100, 0.2) 50%,              /* via-secondary/20 */
    var(--color-background, #0a0a0a) 100%      /* to-background */
  );

  /* bg-black (cor de fundo base caso o gradiente falhe) */
  background-color: black;
}

.hero-section {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 20px;
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
  
}

.logo {
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 12px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.logo img {
  width: 120px;
  opacity: 0.9;
}


/* Fundo com linhas */
.background-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  
}

.container {
  width: 100%;
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
}

.grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  @media (min-width: 768px) {

    flex-direction: row;
    flex-direction: row-reverse;
    gap: 28px;
   
  }
}

.hero-text {
  order: 2;
  width: 100%;

  @media (max-width:767px){
    margin-top: 52px;

  }
}



.hero-text h1 {
  font-weight: 700;
  line-height: 1.1;
  font-size: 2.7rem;
  
}

.hero-text h3 {
  margin-top: 16px;
  text-align: justify;

  span {
    font-weight:300;
  }
}

.hero-text p {
  margin-top: 16px;
  font-weight: 300;
}

.button-green {
  display: flex;
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
  background-color: #30a206; 
  color: #ffffff; 
  font-weight: bold; 
  text-decoration: none;
  font-size: 1rem; /* text-base */
  padding: 1.5rem 1.5rem; /* py-6 px-6 */
  border-radius: 0.75rem; /* rounded-xl */
  transition: all 0.3s ease;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 15px -3px rgba(42, 197, 7, 0.707); 

  @media (max-width:400px){
    font-size: 14px;
  }
}

.button-green:hover {
  background-color: #30a206; /* hover:bg-red-400/90 */
  transform: scale(1.02); /* hover:scale-105 (um pouco menos para não ser muito agressivo) */
}

.red {
  color: #ff0000;
}
.white {
  color: #ffffff;
}

.divider {
  display: flex;
  width: 4rem;
  height: 4px;
  background-color:red;
  margin-top: 1rem;
  
}

.subtitle {
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.3;
  max-width: 40rem;
  text-align: justify;
}

/* Informações */
.info-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: .5rem;
  max-width: 90%;

  @media (max-width:500px) {
    margin-top: 1rem;
    max-width: 100%;
    flex-wrap: nowrap;
  }

}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  @media (max-width:500px) {
    gap: .4rem;
  }
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid;
  border-color: #ff000057;

  @media (max-width:500px) {
    width: 24px;
    height: 24px;
    font-size: .8rem;  
    border: none;
  }
}

.info-label {
  color: #9ca3af;
  font-size: 0.9rem;
}

.info-value {
  color: #fff;
  font-weight: 600;
}

/* Imagem e efeitos */
.hero-image {
  position: relative;
  height: 460px;
  order: 1;
  width: 100%;
  
}

@media (max-width: 767px) {
  .hero-image {
    width: 350px;
    height: 350px;
  }
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: rgba(248, 113, 113, 0.2);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(-50%, -50%);
}

.image-wrapper {
  position: relative;
  height: 100%;
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit:cover;
  object-position: top;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000, transparent, transparent);
}

.corner {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-color: #f87171;
}
.corner.top-left {
  top: 1rem;
  left: 1rem;
  border-top: 2px solid;
  border-left: 2px solid;
}
.corner.bottom-right {
  bottom: 1rem;
  right: 1rem;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

/* Badge */
.floating-badge {
  display: flex;
  width: 55%;
  justify-content: center;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.6rem 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgb(255, 0, 0);
  border-radius: 9999px;
  backdrop-filter: blur(6px);
  text-align: center;
}

.small-text {
  color: #9ca3af;
  font-size: 0.8rem;
}
.name {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.experience {
  color: #ff0000;
  font-size: 0.75rem;
}

/* Blurs decorativos */
.blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.blur-circle.top-right {
  top: 5rem;
  right: 5rem;
  width: 250px;
  height: 250px;
  background: rgba(255, 0, 0, 0.1);
}

.blur-circle.bottom-left {
  bottom: 5rem;
  left: 5rem;
  width: 400px;
  height: 400px;
  background: rgba(248, 113, 113, 0.05);
}


/* ---------------------------

    Seção Consultoria
--------------------------- */

.section-consultoria {
  margin-top: 3rem;
  position: relative;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  background-color: #ff000003;
  
}

@media (min-width: 768px) {
  .section-consultoria {
    margin-top: 54px;
  }
}

/* ======== GLOW DE FUNDO ======== */


/* ======== CONTAINER ======== mesmo da primeira section*/


/* ======== GRID ======== */
.grid-2 {
  display: flex;
  width: 100%;
  
}

@media (min-width: 768px) {
  .grid-2 {
    text-decoration: none;
  }
}

.div-clicavel {
  cursor: pointer; /* Muda o cursor para indicar que é clicável */
}

/* ======== CÍRCULO ======== */
.circle-container {
  position: relative;
  height: 300px;
}

@media (min-width: 768px) {
  .circle-container {
    height: 400px;
  }
}

.circle-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======== BADGE DE PREÇO ======== */
.price-badge {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, rgba(255, 0, 0, 0.2), rgba(248, 113, 113, 0.05));
  border: 2px solid rgba(223, 6, 6, 0.659);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.749);
}

@media (min-width: 768px) {
  .price-badge {
    width: 300px;
    height: 300px;
  }
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: rgb(255, 255, 255);
}

@media (min-width: 768px) {
  .price {
    font-size: 3.75rem;
  }
}

.subtitle {
  color: rgb(156, 163, 175);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .subtitle {
    font-size: 1rem;
  }
}

/* ======== ANÉIS ======== */
.ring {
  position: absolute;
  border-radius: 100%;
  height: 300px;
  width: 300px;
  text-align: center;

  @media (min-width: 768px) {
    
    height: 350px;
    width: 350px;
  }
}

.ring-1 {
  text-align: center; 
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: ping 2s infinite;
}

.ring-2 {

  border: 1px solid rgba(248, 113, 113, 0.1);
  
}

/* ======== TEXTO ======== */
.text-content {
  animation: fadeInUp 1.2s ease-in-out;
}

.title-group {
  background: linear-gradient(to bottom right, rgba(255, 0, 0, 0.151), rgba(248, 113, 113, 0.05));
  padding: 1rem 20px;
  
}


.title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.2;
  color: white;
  text-align: justify;
}

@media (min-width: 768px) {
  .title {
    font-size: 2.5rem;
    margin: 0 auto;
    text-align: center;

  }
}

@media (min-width: 1024px) {
  .title {
    font-size: 2.5rem;
    margin: 0 auto;
    width: 85%;
    
  }
}

.highlight {
  color: rgb(255, 0, 0);
  display: inline-block;
}


.description {
  color: rgb(156, 163, 175);
  line-height: 1.75;
  font-size: 1rem;
  margin-top: 1rem;
  padding: 0rem 20px;
  text-align: justify;
  max-width: 1280px;
  margin: 1rem auto;

}

@media (min-width: 768px) {
  .description {
    font-size: 1.125rem;
  }
}

.emphasis {
  color: white;
  font-weight: 600;
}

.quote {
  border-left: 2px solid rgb(255, 0, 0);
  padding-top: 1rem;
  padding-left: 1rem;
  margin-top: 1rem;
}

.quote p {
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .quote p {
    font-size: 1.25rem;
  }
}

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

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  75%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.fade-in {
  animation: fadeInUp 1s ease-out;
}

.fade-in-up {
  animation: fadeInUp 1.2s ease-out;
}

/* 
section metodologia
*/
.metodologia-section {
  position: relative;
  padding: 2rem 0rem;
  overflow: hidden;

  color: #fff;

  @media(min-width: 768px){
    margin-top: 80px;
  }
}

.metodologia-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}



.metodologia-grid {
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;

  @media (min-width: 768px) {
   flex-direction: row;
   gap: 4rem;
}
}


.metodologia-texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 20px;
  @media(min-width: 768px){
    align-items: baseline;
  }
  
}

.metodologia-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  background-color: rgba(239, 68, 68, 0.1);
  margin-bottom: 36px;
  
}
.metodologia-badge span {
  color: #ff0000;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metodologia-titulo {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .metodologia-titulo {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .metodologia-titulo {
    font-size: 3rem;
  }
}
.metodologia-highlight {
  color: #ff0000;
  display: inline-block;

}

.metodologia-divisor {
  width: 4rem;
  height: 4px;
  background-color: #ff0000;
  box-shadow: 0 0 10px rgb(255, 0, 0);
  margin: 16px 0px;
  align-self: baseline;
}

.metodologia-descricao {
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
}
@media (min-width: 768px) {
  .metodologia-descricao {
    font-size: 1.125rem;
  }
}
.metodologia-negrito {
  color: #fff;
  font-weight: 600;
}

.metodologia-mensagem {
  border-left: 2px solid #ff0000;
  padding-left: 1rem;
  margin-top: 1rem;
}
.metodologia-mensagem p {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}

.metodologia-imagem-container {
  
  height: 350px;
  width: 100%;
  padding: 0rem 1rem;

}
@media (min-width: 768px) {
  .metodologia-imagem-container {
    
    height: 500px;
  }
}
.metodologia-imagem {
  position: relative;
  height: 100%;
  border: 1px solid rgb(255, 0, 0);
  border-radius: 1rem;
  overflow: hidden;
  background-color: #111;

}

.metodologia-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.metodologia-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.8), transparent);
}

.metodologia-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.metodologia-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.metodologia-numero {
  font-size: 4rem;
  font-weight: 700;
  color: #ff0000;
}
.metodologia-subtitulo {
  font-size: 1.25rem;
  font-weight: 600;
}
.metodologia-legenda {
  color: #9ca3af;
  font-size: 0.875rem;
}

.metodologia-canto {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-color: #ff0000;
}
.canto-superior {
  top: 1rem;
  right: 1rem;
  border-top: 2px solid #ff0000;
  border-right: 2px solid #ff0000;
}
.canto-inferior {
  bottom: 1rem;
  left: 1rem;
  border-left: 2px solid #ff0000;
  border-bottom: 2px solid #ff0000;
}


/* Section Conteúdo */
.section-content {
  position: relative;
  padding: 2rem 20px;
  overflow: hidden;
  margin: 0 auto;
  max-width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-content-bg {
  position: absolute;
  top: 25%;
  right: 25%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: rgba(248, 113, 113, 0.05);
  filter: blur(100px);
  z-index: 0;
}

.section-content-container {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
}

/* ====== HEADER ====== */
.section-content-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease forwards;
}

.section-content-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 20px;
  border-radius: 9999px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  background-color: rgba(239, 68, 68, 0.1);
}

.section-content-badge span {
  color: #ff0000;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-content-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 1rem;
}

.section-content-line {
  width: 64px;
  height: 4px;
  background-color: #ff0000;
  margin: 1rem auto;
  border-radius: 4px;
  box-shadow: 0 0 8px #ff0000;
}

.section-content-header p {
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ====== GRID ====== */
.section-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

/* ====== CARDS ====== */
.section-content-card {
  position: relative;
  background-color: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.668);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.section-content-card:hover {
  border-color: rgba(255, 0, 0, 0.81);
  background-color: rgba(40, 40, 40, 0.8);
}

.section-content-number {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.63);
  border: 2px solid #ff0000;
  color: #ff0000;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(248, 113, 113, 0.4);
}

.section-content-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.section-content-body p {
  color: #9ca3af;
  line-height: 1.6;
}

.section-content-card:hover .section-content-body h3 {
  color: #ff0000;
}

.section-content-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background-color: #ff0000;
  transition: width 0.5s ease;
}

.section-content-card:hover .section-content-deco {
  width: 100%;
}

/* ====== ANIMAÇÕES ====== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Autorition Section */

/* ====== SECTION BASE ====== */
.authoritysection {
  position: relative;
  padding: 64px 20px;
  overflow: hidden;
}


/*
.authoritysection-blur {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 500px;
  width: 500px;
  background: rgba(185, 28, 28, 0.1);
  border-radius: 50%;
  filter: blur(100px);
  transform: translate(-50%, -50%);
} */

.authoritysection-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
}

/* ====== GRID ====== */
.authoritysection-grid {
  display: flex;
  flex-direction: column;  
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .authoritysection-grid {
    flex-direction: row-reverse;
    
  }
}

/* ====== IMAGEM ====== */
.authoritysection-image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  animation: fadeIn 1s ease forwards;
}

@media (min-width: 768px) {
  .authoritysection-image-wrapper {
    height: 500px;
  }
}

.authoritysection-image {
  position: relative;
  height: 100%;
  border: 2px solid rgba(255, 0, 0, 0.63);
  border-radius: 16px;
  overflow: hidden;
}

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

.authoritysection-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000, transparent, transparent);
}

/* ====== BADGE ====== */
.authoritysection-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
}

.authoritysection-badge-content {
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(185, 28, 28, 0.3);
  border-radius: 12px;
  padding: 16px;
  text-align: left;
}

.authoritysection-name {
  font-size: 28px;
  font-weight: bold;
}

.authoritysection-title {
  font-size: 16px;
  color: #ff0000;
  font-weight: 600;
  margin-top: 4px;
}

.authoritysection-exp {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 6px;
}

/* ====== CANTOS DECORATIVOS ====== */
.authoritysection-corner {
  position: absolute;
  width: 64px;
  height: 64px;
  border-color: #b91c1c;
}

.authoritysection-corner.top-left {
  border-top: 2px solid;
  border-left: 2px solid;
  top: 16px;
  left: 16px;
}

.authoritysection-corner.top-right {
  border-top: 2px solid;
  border-right: 2px solid;
  top: 16px;
  right: 16px;
}

/* ====== TEXTO ====== */
.authoritysection-text {
  animation: fadeInUp 1s ease forwards;
  display: flex;
  flex-direction: column;
  align-items: center;

  @media (min-width:768px){
    align-items: baseline;
  }
}

.authoritysection-tag {
  display: flex;
  padding: 8px 16px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  background-color: rgba(239, 68, 68, 0.1);
  border-radius: 999px;
  color: #ff0000;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: max-content;
  margin-bottom: 20px;
}

.authoritysection-heading {
  font-size: 32px;
  font-weight: bold;
  margin: 16px 0;
  line-height: 1.3;
  text-align: center;
}

.authoritysection-heading span {
  color: #ff0000;
}

@media (min-width: 768px) {
  .authoritysection-heading {
    font-size: 40px;
  }
}

.authoritysection-line {
  width: 64px;
  height: 4px;
  background: #b91c1c;
  margin-bottom: 24px;
}

.authoritysection-paragraphs {
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  padding: 0rem 0rem;
}

.authoritysection-paragraphs strong {
  color: #fff;
  font-weight: 700;
}

/* ====== CITAÇÃO ====== */
.authoritysection-quote {
  position: relative;
  margin-top: 32px;
  background: #1a1a1a;
  border-left: 4px solid #b91c1c;
  border-radius: 0 12px 12px 0;
  padding: 32px;
}

.authoritysection-quote-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  color: rgba(255, 0, 0, 0.549);
}

.authoritysection-quote p {
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.authoritysection-author {
  margin-top: 16px;
  font-size: 14px;
  color: #ff0202;
  font-weight: 600;
}

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

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

/* Testemonial Section */

.testimonialsection {
  padding: 2rem 20px;
  text-align: center;
  overflow: hidden;
}

.testimonialsection h2 {
  
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #fff;
  animation: fadeInUp 1s ease forwards;
}

.testimonialsection-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  
}

/* Cards stacked (absolute) — evita flicker e problemas com display:none */
.testimonialsection-cards {
  position: relative;
  min-height: 550px;
  
}

.testimonialsection-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-direction: column;
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255, 0, 0, 0.397);
  border-radius: 12px;
  padding: 20px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
  overflow: hidden;
}

.testimonialsection-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonialsection-card video,
.testimonialsection-card img,
.testimonialsection-card iframe {
  width: 100%;
  max-width: 750px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  height: 500px;
}

.testimonialsection-text {
  font-size: 1.15rem;
  font-style: italic;
  color: #f5f5f5;
  margin-bottom: 12px;
  max-width: 760px;
  object-fit: cover;
}

.testimonialsection-author {
  color: #b4adad;
  font-weight: 600;
}

.testimonialsection-controls {
  display: flex;
  justify-content: center;
  align-items: center;
 
  margin-top: 30px;
  gap: 16px;
}

.testimonialsection-btn {
  border: 1px solid rgb(255, 0, 0);
  background: transparent;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: background .2s ease, transform .12s ease;
}

.testimonialsection-btn:hover { background: rgb(255, 0, 0); transform: translateY(-2px); }

.testimonialsection-dots { display:flex; gap:8px; align-items:center; }

.testimonialsection-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255, 0, 0, 0.669);
  cursor: pointer; transition: all .25s ease;
}

.testimonialsection-dot.active {
  background: #ff0000;
  width: 22px; height: 10px; border-radius: 12px;
}

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

/* Responsividade */
@media (max-width: 820px) {
  .testimonialsection-cards {
    min-height: 400px;
    
  }
  .testimonialsection-card { padding: 24px;}
  .testimonialsection h2 { font-size: 1
  }}


  /* Event Details Section */

  /*
 * Versão CSS Pura com Cores Embutidas (Hexadecimais e RGBA)
 */

/* * 1. Configurações Globais da Seção
 */
.eventdetailssection-container {
  padding: 2rem 20px; /* py-12 px-4 */
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d; /* Fundo escuro */
}

@media (min-width: 768px) {
  .eventdetailssection-container {
      padding: 2rem 1rem; /* md:py-20 */
  }
}

.eventdetailssection-content-wrapper {
  max-width: 1280px; /* max-w-6xl */
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}



.eventdetailssection-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* red-400/5 é rgba(248, 113, 113, 0.05) */
  background: linear-gradient(to bottom, transparent, rgba(248, 113, 113, 0.05), transparent);
}
*/

/* Efeito 2: Blur circular no centro */
/*
.eventdetailssection-bg-blur {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background-color: rgba(248, 113, 113, 0.1); 
  border-radius: 50%;
  filter: blur(120px);
}
*/



/* * 3. Header (Cabeçalho)
*/
.eventdetailssection-header {
  text-align: center;
  margin-bottom: 3rem; /* mb-12 */
  line-height: 1.5;
}
@media (min-width: 768px) {
  .eventdetailssection-header {
      margin-bottom: 4rem; /* md:mb-16 */
  }
}

.eventdetailssection-header-accent-top {
  height: 1px;
  width: 3rem; /* w-12 */
  background-color: #ff0000; /* red-400 */
  margin: 0 auto 1rem; /* mx-auto mb-4 */
}

.eventdetailssection-title {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700; /* font-bold */
  color: #ffffff; /* white */
  text-align: center;
  
}

@media (min-width: 768px) {
  .eventdetailssection-title {
      font-size: 3rem; /* md:text-5xl */
      text-align: center;
      
  }
}

.eventdetailssection-subtitle {
  color: #9ca3af; /* gray-400 */
  font-size: 1.125rem; /* text-lg */
  max-width: 48rem; /* max-w-2xl */
  margin: 0.5rem auto 0; /* mx-auto */
  text-align: center;
  margin-bottom: 24px;
}

/* * 4. Grid de Detalhes (O layout permanece o mesmo)
*/
.eventdetailssection-grid {
  display: grid;
  gap: 1.5rem; /* gap-6 */
  grid-template-columns: 1fr; 
}

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

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

/* * 5. Item do Grid (Card)
*/
.eventdetailssection-item {
  position: relative;
  /* card/50 (simulação de fundo transparente escuro) */
  background-color: rgba(0, 0, 0, 0.05); 
  /* border-red-400/20 */
  box-shadow: 0px 0px 4px 0.2px #ff000083  ; 
  border-radius: 0.75rem; 
  padding: 1.5rem; 
  transition: all 0.3s ease; 
  text-align: center;
  backdrop-filter: blur(4px); 
  z-index: 10; 
}

/* Efeito de Hover: Borda, Sombra e Efeito Glow */
.eventdetailssection-item:hover {
  /* hover:border-red-400/50 */
  border-color: rgba(255, 0, 0, 0.285); 
  /* Sombra simulando hover:shadow-lg hover:shadow-red-400/10 */
  box-shadow: 0 10px 15px -3px rgba(248, 113, 113, 0.1), 0 4px 6px -2px rgba(248, 113, 113, 0.05); 
}

/* Efeito Glow Interno (::before) */
.eventdetailssection-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* Gradiente para o glow */
  background: linear-gradient(to bottom right, rgba(255, 0, 0, 0), rgba(248, 113, 113, 0), rgba(248, 113, 113, 0.05)); 
  border-radius: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1; 
}

.eventdetailssection-item:hover::before {
  opacity: 1; 
}

.eventdetailssection-item-icon-wrapper {
  width: 3rem; 
  height: 3rem; 
  box-shadow: 0px 0px 4px 1px #FF0000  ;
  border-radius: 0.5rem; 
  /* bg-red-400/10 */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem; 
  transition: background-color 0.3s;
}

.eventdetailssection-item:hover .eventdetailssection-item-icon-wrapper {
  /* hover:bg-red-400/20 */
  box-shadow: 0px 0px 4px 1px #ff0000a6  ;
}

.eventdetailssection-icon {
  width: 1.5rem; 
  height: 1.5rem; 
  color: #ff00008b; /* red-400 */
}

.eventdetailssection-item-label {
  font-size: 0.875rem; 
  font-weight: 500; 
  color: #ff0000; /* red-400 */
  text-transform: uppercase;
  letter-spacing: 0.05em; 
  margin-bottom: 0.25rem;
}

.eventdetailssection-item-value {
  font-size: 1.25rem; 
  font-weight: 600; 
  color: #ffffff; /* white */
  margin-bottom: 0.25rem;
}

.eventdetailssection-item-subvalue {
  font-size: 0.875rem; 
  color: #9ca3af; /* gray-400 */
}


/* * 6. Bottom Accent
*/
.eventdetailssection-footer-accent {
  margin-top: 3rem; 
  display: flex;
  justify-content: center;
  height: 1px; 
  width: 6rem; 
  margin-left: auto;
  margin-right: auto;
  /* Gradiente (from-transparent via-red-400 to-transparent) */
  background: linear-gradient(to right, transparent, #ff0000, transparent); /* red-400 */
}


/* Faq  Section */


/*
 * Versão CSS Pura FAQ com Cores Embutidas e Checkbox Hack para Acordeão
 */

/* Variáveis de cores para referência rápida (embora os valores sejam embutidos)
   red-400: #f87171
   gray-400: #9ca3af
   white: #ffffff
*/

/* * 1. Configurações Globais da Seção
 */
 .faqsection-container {
  padding: 2rem 1rem; /* py-12 px-4 */
  background-color: #0d0d0d; /* Fundo escuro */
  overflow: hidden;
}

@media (min-width: 768px) {
  .faqsection-container {
      padding: 2rem 1rem; /* md:py-20 */
  }
}

.faqsection-content-wrapper {
  max-width: 900px; /* max-w-4xl */
  margin-left: auto;
  margin-right: auto;
}

/* * 2. Header (Cabeçalho)
*/
.faqsection-header {
  text-align: center;
  margin-bottom: 3rem; /* mb-12 */
  line-height: 1.5;
}
@media (min-width: 768px) {
  .faqsection-header {
      margin-bottom: 4rem; /* md:mb-16 */
  }
}

.faqsection-tag-wrapper {
  display: inline-block;
  margin-bottom: 1rem;
}

.faqsection-tag {
  font-size: 0.875rem; /* text-xs */
  font-weight: bold; 
  color: #ff0000; /* text-red-400 */
  text-transform: uppercase;
  letter-spacing: 0.05em; /* tracking-wider */
  padding: 0.5rem 1rem; /* px-4 py-2 */
  border-radius: 9999px; /* rounded-full */
  /* border border-red-400/30 bg-red-400/5 */
  border: 1px solid rgba(239, 68, 68, 0.2);
  background-color: rgba(239, 68, 68, 0.1);
}

@media (min-width: 768px) {
  .faqsection-tag {
      font-size: 0.875rem; /* md:text-sm */
  }
}

.faqsection-title {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700; 
  color: #ffffff; /* text-white */
  margin-bottom: 1rem; /* mb-4 */
}

@media (min-width: 768px) {
  .faqsection-title {
      font-size: 2.25rem; /* md:text-4xl */
  }
}
@media (min-width: 1024px) {
  .faqsection-title {
      font-size: 3rem; /* lg:text-5xl */
  }
}

.faqsection-subtitle {
  font-size: 1rem; /* text-base */
  color: #9ca3af; /* text-gray-400 */
  max-width: 42rem; /* max-w-2xl */
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .faqsection-subtitle {
      font-size: 1.125rem; /* md:text-lg */
  }
}

/* * 3. FAQ Items (Accordion)
*/
.faqsection-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* space-y-3 */
}

.faqsection-item {
  border: 1px solid rgba(242, 255, 0, 0.08); /* border-border/50 (simulação) */
  border-radius: 0.5rem; /* rounded-lg */
  overflow: hidden;
  /* bg-card/30 backdrop-blur-sm */
  background-color: rgba(255, 255, 255, 0.03); 
  backdrop-filter: blur(4px);
  transition: border-color 0.3s ease;
}

/* Efeito de hover no item */
.faqsection-item:hover {
  border-color: rgba(248, 0, 0, 0.5); /* hover:border-red-400/50 */
}

/* O input é escondido, mas controla o estado */
.faqsection-toggle-input {
  display: none;
}

/* Label é o botão clicável */
.faqsection-question-label {
  width: 100%;
  padding: 1.25rem 1.5rem; /* px-6 py-5 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 1rem;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.faqsection-question-label:hover {
  background-color: rgba(248, 113, 113, 0.05); /* hover:bg-red-400/5 */
}

.faqsection-question-text {
  font-size: 1rem; /* text-base */
  font-weight: 600; 
  color: #ffffff; /* text-white */
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .faqsection-question-text {
      font-size: 1.125rem; /* md:text-lg */
  }
}

.faqsection-icon-chevron {
  width: 1.25rem; /* w-5 */
  height: 1.25rem; /* h-5 */
  color: #f80000; /* text-red-400 */
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Rotação do ícone quando a pergunta está aberta */
.faqsection-toggle-input:checked + .faqsection-question-label .faqsection-icon-chevron {
  transform: rotate(180deg); /* rotate-180 */
}

/* Conteúdo da resposta (o que abre e fecha) */
.faqsection-answer-content {
  /* Simula max-h-0 / max-h-96 */
  max-height: 0; 
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.faqsection-toggle-input:checked + .faqsection-question-label + .faqsection-answer-content {
  /* Define uma altura suficiente para o conteúdo ser visível */
  max-height: 500px; 
}

.faqsection-answer-text {
  padding: 0.5rem 1.5rem 1.25rem; /* pt-2, px-6, pb-5 */
  font-size: 0.875rem; /* text-sm */
  color: #9ca3af; /* text-gray-400 */
  line-height: 1.6; /* leading-relaxed */
}
@media (min-width: 768px) {
  .faqsection-answer-text {
      font-size: 1rem; /* md:text-base */
  }
}

/* * 4. WhatsApp Highlight
*/
.faqsection-whatsapp-highlight {
  margin-top: 3rem; /* mt-12 */
  padding: 1.5rem; /* p-6 */
  border-radius: 0.75rem; /* rounded-xl */
  /* Gradiente bg-gradient-to-br from-red-400/10 via-red-400/5 to-transparent */
  background: linear-gradient(to bottom right, rgba(248, 113, 113, 0.1), rgba(248, 113, 113, 0.05), transparent);
  /* border border-red-400/30 */
  border: 1px solid rgba(255, 0, 0, 0.596); 
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .faqsection-whatsapp-highlight {
      padding: 2rem; /* md:p-8 */
  }
}

/* Efeito de fundo sutil (gradiente horizontal) */
.faqsection-whatsapp-bg-effect {
  position: absolute;
  inset: 0;
  /* bg-gradient-to-r from-red-400/5 to-transparent opacity-50 */
  background: linear-gradient(to right, rgba(27, 133, 27, 0.05), transparent);
  opacity: 0.5;
}

.faqsection-whatsapp-content {
  position: relative;
  z-index: 10;
}

.faqsection-whatsapp-details-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1rem; /* gap-4 */
}

.faqsection-whatsapp-icon-wrapper {
  width: 3rem; /* w-12 */
  height: 3rem; /* h-12 */
  border-radius: 50%; /* rounded-full */
  /* bg-red-400/20 */
  background-color: rgba(18, 154, 52, 0.721); 
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faqsection-whatsapp-icon {
  width: 1.5rem; /* w-6 */
  height: 1.5rem; /* h-6 */
  color: rgb(255, 255, 255); /* text-red-400 */
}

.faqsection-whatsapp-title {
  font-size: 1.125rem; /* text-lg */
  font-weight: 700; 
  color: #ffffff; /* text-white */
  margin-bottom: 0.5rem; /* mb-2 */
}
@media (min-width: 768px) {
  .faqsection-whatsapp-title {
      font-size: 1.25rem; /* md:text-xl */
  }
}

.faqsection-whatsapp-text {
  font-size: 0.875rem; /* text-sm */
  color: #9ca3af; /* text-gray-400 */
  line-height: 1.6; /* leading-relaxed */
}
@media (min-width: 768px) {
  .faqsection-whatsapp-text {
      font-size: 1rem; /* md:text-base */
  }
}

/* cta section */

/*
 * Versão CSS Pura CTA/Preço com Cores Embutidas
 */

/* Cores de referência:
   red-400: #f87171
   gray-400: #9ca3af
   white: #ffffff
   background: #0d0d0d (Fundo escuro)
*/

/* * 1. Configurações Globais e Background
 */
 .cta-section-container {
  padding: 4rem 1rem; /* py-16 px-4 */
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d;
}
@media (min-width: 768px) {
  .cta-section-container {
      padding: 6rem 1rem; /* md:py-24 */
  }
}

/* Efeito 1: Gradiente vertical superior (from-red-400/10 via-red-400/5 to-transparent) */
.cta-section-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(255, 2, 2, 0.109), transparent);
}

/* Efeitos 2 e 3: Blurs circulares (Gerados com -z-10 no original, mantendo a ordem) */


/* Blur Top-Left (red-400/20) */
.cta-section-blur-top-left {
  top: 25%; /* top-1/4 */
  left: 25%; /* left-1/4 */
  background-color: rgba(248, 113, 113, 0.2);
}

/* Blur Bottom-Right (red-400/15) */
.cta-section-blur-bottom-right {
  bottom: 25%; /* bottom-1/4 */
  right: 25%; /* right-1/4 */
  background-color: rgba(248, 113, 113, 0.15);
}

/* * 2. Conteúdo Principal */
.cta-section-content-wrapper {
  max-width: 80rem; /* container mx-auto */
  margin-left: auto;
  margin-right: auto;
  max-width: 64rem; /* max-w-5xl */
  position: relative;
  z-index: 10;
}

.cta-section-main-content {
  text-align: center;
  /* space-y-8 */
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* * 3. Header e Títulos */
.cta-section-header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem; /* space-y-4 */
}

.cta-section-tag-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem; /* gap-2 */
  padding: 0.75rem 1.5rem; /* px-6 py-3 */
  border: 1px solid rgba(239, 68, 68, 0.2);
  background-color: rgba(239, 68, 68, 0.1); /* border-red-400/30 */
  border-radius: 9999px; /* rounded-full */
}

.cta-section-icon-clock {
  width: 1rem; /* h-4 w-4 */
  height: 1rem;
  color: #ff0000; /* text-red-400 */
  /* Animação 'animate-pulse' não é implementada em CSS puro simples */
}

.cta-section-tag-text {
  color: #ff0000; /* text-red-400 */
  font-size: 0.875rem; /* text-sm */
  font-weight: bold; /* font-bold */
  letter-spacing: 0.05em; /* tracking-wide */
  text-transform: uppercase;
}

.cta-section-title {
  /* font-serif */
  font-size: 2.25rem; /* text-4xl */
  font-weight: 700; /* font-bold */
  color: #ffffff; /* text-white */
  line-height: 1.1; /* Text-balance não é nativo em CSS, usa-se line-height baixo */
}
@media (min-width: 768px) {
  .cta-section-title {
      font-size: 3.75rem; /* md:text-6xl */
  }
}

.cta-section-subtitle {
  font-size: 1.25rem; /* text-xl */
  color: #9ca3af; /* text-gray-400 */
  max-width: 42rem; /* max-w-2xl */
  margin-left: auto;
  margin-right: auto;
}

/* * 4. Card de Preço */
.cta-section-price-card-wrapper {
  position: relative;
  max-width: 42rem; /* max-w-2xl */
  margin-left: auto;
  margin-right: auto;
}

.cta-section-price-card {
  /* bg-gradient-to-br from-background via-background to-red-400/5 */
  /* Fundo escuro (#0d0d0d) é a cor 'background' no original */
  background: linear-gradient(to bottom right, #0d0d0d, #0d0d0d, rgba(248, 113, 113, 0.05));
  border: 2px solid rgba(248, 113, 113, 0.3); /* border-2 border-red-400/30 */
  border-radius: 1rem; /* rounded-2xl */
  padding: 2rem; /* p-8 */
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow-2xl */
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-section-price-card {
      padding: 3rem; /* md:p-12 */
  }
}

/* Cantos Decorativos */
.cta-section-card-corner {
  position: absolute;
  width: 5rem; /* w-20 */
  height: 5rem; /* h-20 */
  
}
.cta-section-corner-tl {
  top: 0;
  left: 0;
  border-top: 2px solid #ff0000;
  border-left: 2px solid #ff0000;
  border-top-left-radius: 1rem; /* rounded-tl-2xl */
}
.cta-section-corner-br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid #ff0000;
  border-right: 2px solid #ff0000;
  border-bottom-right-radius: 1rem; /* rounded-br-2xl */
}


/* Display de Preço */
.cta-section-price-details {
  /* space-y-6, pt-6, pt-6 -> simulação de espaçamento vertical */
  display: flex;
  flex-direction: column;
  gap: 1.5rem; 
}
.cta-section-price-info {
  /* space-y-2 */
  display: flex;
  flex-direction: column;
  gap: 0.5rem; 
}

.cta-section-price-label {
  color: #9ca3af; /* text-gray-400 */
  font-size: 0.875rem; /* text-sm */
  text-transform: uppercase;
  letter-spacing: 0.05em; /* tracking-wider */
}

.cta-section-discount-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem; /* gap-3 */
}

.cta-section-old-price {
  color: rgba(156, 163, 175, 0.5); /* text-gray-400/50 */
  font-size: 1.5rem; /* text-2xl */
  text-decoration: line-through;
}

.cta-section-discount-badge {
  padding: 0.25rem 1rem; /* px-4 py-1 */
  background-color: rgba(239, 0, 0, 0.2); /* bg-red-400/20 */
  border-radius: 9999px; /* rounded-full */
}

.cta-section-discount-text {
  color: #ff0000; /* text-red-400 */
  font-weight: 700; /* font-bold */
  font-size: 0.875rem; /* text-sm */
}

.cta-section-current-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem; /* gap-2 */
}

.cta-section-currency {
  color: #9ca3af; /* text-gray-400 */
  font-size: 1.875rem; /* text-3xl */
}

.cta-section-current-price-value {
  color: #ffffff; /* text-red-400 */
  font-weight: 700; /* font-bold */
  font-size: 4.5rem; /* text-7xl */
}
@media (min-width: 768px) {
  .cta-section-current-price-value {
      font-size: 6rem; /* md:text-8xl */
  }
}

.cta-section-payment-info {
  color: #9ca3af; /* text-gray-400 */
  font-size: 0.875rem; /* text-sm */
}

/* Lista de Benefícios */
.cta-section-benefits-list {
  border-top: 1px solid rgba(248, 113, 113, 0.2); /* border-t border-red-400/20 */
  padding-top: 1.5rem; /* pt-6 */
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* space-y-3 */
}

.cta-section-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* gap-3 */
  text-align: left;
}

.cta-section-icon-check {
  width: 1.25rem; /* h-5 w-5 */
  height: 1.25rem;
  color: #ff0000; /* text-red-400 */
  flex-shrink: 0;
}

.cta-section-benefit-text {
  color: #ffffff; /* text-white */
}

/* * 5. Botão CTA */
.cta-section-cta-area {
  padding-top: 1.5rem; /* pt-6 */
  display: flex;
  flex-direction: column;
  gap: 1rem; /* space-y-4 */
}

.cta-section-button {
  display: block;
  width: 100%;
  text-align: center;
  
  /* Cores e Estilos */
  background-color: #30a206; /* bg-red-400 */
  color: #ffffff; /* text-red-400-foreground (assumindo foreground escuro para o botão) */
  font-weight: bold; /* font-bold */
  text-decoration: none;
  
  /* Dimensões e Formatação */
  font-size: 1rem; /* text-base */
  padding: 1.5rem 1.5rem; /* py-6 px-6 */
  border-radius: 0.75rem; /* rounded-xl */
  border: 2px solid rgba(11, 220, 56, 0.5); /* border-2 border-red-400/50 */
  
  /* Efeitos Visuais */
  box-shadow: 0 4px 15px -3px rgba(42, 197, 7, 0.707); /* shadow-2xl hover:shadow-red-400/50 */
  transition: all 0.3s ease;

  @media (max-width:400px){
    font-size: 14px;
    padding: 1rem 1rem;
  }
}

.cta-section-button:hover {
  background-color: #30a206; /* hover:bg-red-400/90 */
  transform: scale(1.02); /* hover:scale-105 (um pouco menos para não ser muito agressivo) */
}

@media (min-width: 768px) {
  .cta-section-button {
      font-size: 1.25rem; /* md:text-xl */
      padding: 2rem 2rem; /* md:py-8 md:px-8 */
  }
}

.cta-section-security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* gap-2 */
  font-size: 0.875rem; /* text-sm */
  color: #9ca3af; /* text-gray-400 */
}

.cta-section-icon-shield {
  width: 1rem; /* h-4 w-4 */
  height: 1rem;
  color: #ffffff; /* text-red-400 */
}


/* * 6. Footer (Informações de Limite) */
.cta-section-footer-info {
  display: flex;
  flex-direction: column; /* flex-col */
  align-items: center;
  justify-content: center;
  gap: 1.5rem; /* gap-6 */
  padding-top: 1rem; /* pt-4 */
}
@media (min-width: 768px) {
  .cta-section-footer-info {
      flex-direction: row; /* md:flex-row */
      gap: 1.5rem;
  }
}

.cta-section-limit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* gap-2 */
  color: #ffffffde; /* text-red-400 */
}

.cta-section-icon-users,
.cta-section-icon-clock {
  width: 1.25rem; /* h-5 w-5 */
  height: 1.25rem;
  color: #ffffffde;
}

.cta-section-limit-text {
  font-weight: 600; /* font-semibold */
}

.cta-section-separator {
  display: none; /* hidden */
}
@media (min-width: 768px) {
  .cta-section-separator {
      display: block; /* md:block */
      width: 1px; /* w-px */
      height: 1.5rem; /* h-6 */
      background-color: rgba(248, 113, 113, 0.3); /* bg-red-400/30 */
  }
}


/*
 * Versão CSS Pura Footer com Cores Embutidas e Prefixo
 */

/* Cores de referência:
   red-400: #f87171
   gray-400: #9ca3af
   white: #ffffff
   background: #0d0d0d (Assumido)
*/

/* * 1. Estrutura do Footer */
.footer-section-container {
  border-top: 1px solid rgba(248, 113, 113, 0.2); /* border-t border-red-400/20 */
  padding: 3rem 1rem; /* py-12 px-4 */
  background-color: #0d0d0d; /* Fundo escuro */
  overflow: hidden;
}

.footer-section-content-wrapper {
  max-width: 72rem; /* max-w-6xl */
  margin-left: auto;
  margin-right: auto;
}

.footer-section-content {
  text-align: center;
  /* space-y-6 */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* * 2. Logo e Títulos */
.footer-section-logo-wrapper {
  display: flex;
  justify-content: center;
}

.footer-section-logo {
  width: 9.375rem; /* width={150} */
  height: 3.125rem; /* height={50} */
  opacity: 0.9; /* opacity-90 */
  object-fit: contain;
}

.footer-section-title-group {
  /* space-y-2 */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section-title {
  /* font-serif */
  font-size: 1.5rem; /* text-2xl */
  font-weight: 600; /* font-semibold */
  color: #ffffff; /* text-white */
}

.footer-section-subtitle {
  color: #9ca3af; /* text-gray-400 */
}

/* * 3. Links de Contato */
.footer-section-contact-links {
  display: flex;
  flex-direction: column; /* flex-col */
  align-items: center;
  justify-content: center;
  gap: 1rem; /* gap-4 */
  font-size: 0.875rem; /* text-sm */
  color: #af9c9c; /* text-gray-400 */
}
@media (min-width: 768px) {
  .footer-section-contact-links {
      flex-direction: row; /* md:flex-row */
  }
}

.footer-section-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section-link:hover {
  color: #ff0000; /* hover:text-red-400 */
}

.footer-section-separator-md {
  display: none; /* hidden */
}
@media (min-width: 768px) {
  .footer-section-separator-md {
      display: inline; /* md:inline */
  }
}

/* * 4. Rodapé Inferior e Direitos Autorais */
.footer-section-bottom-bar {
  padding-top: 1.5rem; /* pt-6 */
  border-top: 1px solid rgba(248, 113, 113, 0.1); /* border-t border-red-400/10 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-section-copyright-group {
  display: flex;
  flex-direction: column; /* flex-col */
  align-items: center;
  justify-content: center;
  gap: 1rem; /* gap-4 */
  font-size: 0.75rem; /* text-xs */
  color: #9ca3af; /* text-gray-400 */
}
@media (min-width: 768px) {
  .footer-section-copyright-group {
      flex-direction: row; /* md:flex-row */
  }
}

.footer-section-privacy-links {
  display: flex;
  gap: 1rem; /* gap-4 */
  text-decoration: none;
}

.footer-section-link-small {
  font-size: 0.75rem;
  text-decoration: none;
}

/* Informação de Segurança Hotmart */
.footer-section-security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* gap-2 */
  margin-top: 1rem; /* mt-4 */
  font-size: 0.75rem; /* text-xs */
  color: #ff0000; /* text-red-400 */
}

.footer-section-icon-shield {
  width: 0.75rem; /* h-3 w-3 */
  height: 0.75rem;
}