body {
  font-family: "Inter", sans-serif;
  background-color: #0b0b0d;
  color: #ffffff;
}
h1,
h2,
h3,
h4,
h5,
h6,
.font-cinzel {
  font-family: "Cinzel", serif;
}
.bg-black-deep {
  background-color: #0b0b0d;
}
.bg-gray-dark {
  background-color: #2a2a2c;
}
.text-gold {
  color: #c59a47;
}
.text-red-fire {
  color: #b51217;
}
.bg-red-fire {
  background-color: #b51217;
}
.border-gold {
  border-color: #c59a47;
}
.btn-primary {
  @apply bg-red-fire hover:bg-[#9d0f14] text-white font-cinzel text-xl md:text-2xl py-5 px-12 rounded-none transition-all duration-300 transform hover:scale-105 shadow-2xl;
}
.urgency-bar {
  background: linear-gradient(90deg, #b51217, #5a0f14);
}
.btn-urgency {
  background: linear-gradient(90deg, #b51217, #5a0f14);
  color: white;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 20px 40px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(181, 18, 23, 0.4);
}
.btn-urgency:hover {
  background: linear-gradient(90deg, #d1161b, #6b161b);
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 40px rgba(181, 18, 23, 0.6);
  color: #ffffff;
}
@media (min-width: 768px) {
  .btn-urgency {
    font-size: 1.2rem;
    padding: 20px 40px;
  }
}

/* ESTILO DAS SETAS CARROSSEL */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(197, 154, 71, 0.2);
  border: 2px solid #c59a47;
  border-radius: 50%;
  transition: all 0.3s;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  color: #c59a47;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #c59a47;
}
.swiper-button-next:after {
  content: "→";
}
.swiper-button-prev:after {
  content: "←";
}

.swiper-pagination-bullet {
  background: #444;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #c59a47;
}

/* ANIMAÇÃO ABERTURA FAQ */
.accordion-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
details[open] .accordion-content {
  max-height: 600px;
  opacity: 1;
  padding-top: 1.5rem;
  padding-bottom: 2.25rem;
}
details[open] > summary {
  border-bottom: none !important;
}
