body {
  font-family: 'lato', sans-serif;
}

:root {
  --primary-color: #0a6c80;
  --secondary-color: #cde1e5;
  --third-color: #0d4c6b;
  --fourth-color: #a9ecff;
  --primary-color-light: #3bacbf;
  --primary-color-dark: #085157;
  --secondary-color-light: #58dfff;
  --secondary-color-dark: #00c2e2;
  --contrast-color: #00ccff;
  --text-color: #212121;
  --light-color: #f1f1f1;
}

.video {
  background-color: #0c2f4f;
  padding-top: 30px;
  padding-bottom: 40px;
  background-repeat: no-repeat;
}

.container {
  max-width: 1140px;
}

.video h1 {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: #ffffff;
  font-size: 62px;
  font-weight: 900;
  text-transform: capitalize;
  line-height: 1em;
  margin-bottom: 20px;
}
.video span {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: #ffffff;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 10px;
}
.products {
  position: relative;
  padding: 1.5rem 0;
}

.container-video {
  border-style: solid;
  border-width: 3px;
  border-color: #ffffff;
}

.titulo-kits {
  background-color: #1b6ab2;
  padding-top: clamp(16px, 3vw, 30px);
  padding-bottom: clamp(16px, 3vw, 50px);
}

.titulo-kits h2 {
  color: #ffffff;
  font-size: 2.6em;
  font-weight: 800;
  line-height: 1em;
  margin-bottom: 0;
}

.tg {
  position: relative;
  z-index: -1;
}

.tg::after {
  background-color: #1b6ab2;
  top: -1px;
}

.tg::before {
  background-color: #1b6ab2;
  width: clamp(40px, 5vw, 50px);
  height: clamp(40px, 5vw, 50px);
  content: ' ';
  display: block;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
  position: absolute;
  top: 0;
  left: 50%;
}

.item {
  text-decoration: none;
  text-align: center;
  padding: 3px;
  color: var(--text-color);
  background-color: white;
  border-radius: 1em;
  overflow: hidden;
  border: 2px solid #cde2e6;
  transition: all 0.3s ease;
  transform: translateY(0);
  position: relative;
}

.item .desktop {
  background-color: #fbfbfb;
  border-radius: 1em;
  padding-bottom: 1px;
}

.item .supply {
  line-height: 1;
}

.px-2 {
  padding-right: 25px !important;
  padding-left: 25px !important;
}

.item .price {
  max-width: fit-content;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.item .savings {
  font-size: 0.8em;
}

.item .savings > div:first-child {
  border-top: 1px dashed rgba(0, 0, 0, 0.42);
}

.item .savings > div {
  align-items: center;
  justify-content: center;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.42);
  margin: 0 50px;
}

.button-bg {
  background-image: linear-gradient(to top, #dadada 50%, #e0e0e0 51%);
  color: var(--text-color) !important;
  border: none !important;
  font-size: 1.25em;
  border-radius: 0.5em !important;
  line-height: 1;
  padding: 0.5em 1.5em;
  text-decoration: none;
  text-shadow: none !important;
  box-shadow: 0 -4px rgba(0, 0, 0, 0.05) inset;
}

.item .button-bg span {
  font-size: 0.65em;
}

.item .totals {
  font-size: 0.9em;
}

.item .mobile {
  background-color: #fbfbfb;
  border-radius: 1em;
  padding-bottom: 1px;
}

.item .mobile .totals {
  font-size: 0.8em;
}

.item .mobile .price .value {
  font-size: 2.8em;
  letter-spacing: -0.02em;
}

.item.promo {
  color: white;
  background-color: white;
  text-shadow: 0px 2px rgb(0 81 121 / 64%);
  border: 2px solid #086a7d;
}

.item.promo .desktop {
  background: radial-gradient(#d3e6f8, #1b6ab2);
}

.item.promo .item-header {
  background-color: white;
  color: #0b6a7d;
}

.item .desktop .item-header {
  background-color: var(--secondary-color);
  border-radius: 12px 12px 0px 0px;
}

.item .item-header {
  text-shadow: none;
}

.fw-bold,
b {
  font-weight: 800 !important;
}

.item .price {
  max-width: fit-content;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.item .savings i {
  font-size: 1.25em;
}

.button-bg.promo {
  color: var(--text-color) !important;
  background-image: linear-gradient(to top, #fccd15 50%, #ffd814 51%);
}

.item.promo .mobile {
  background: radial-gradient(#07697e, #084a57);
}

.item.promo .mobile .item-header {
  font-size: 0.9em;
}

.item.promo .item-header {
  background-color: white;
  color: var(--primary-color);
}

.item .mobile .item-header {
  font-size: 0.9em;
}

.item .mobile .price .value {
  font-size: 2.8em;
  letter-spacing: -0.02em;
}

/* Nova regra para esconder e mostrar o checkout de forma controlada */
#products-section {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transform: translateY(30px);
}

#products-section.show-checkout {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Animações dos cards de produto */
.products .item {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* Atrasos individuais para cada item */
.products .item:nth-child(1) {
  animation-delay: 0.1s;
}

.products .item:nth-child(2) {
  animation-delay: 0.2s;
}

.products .item:nth-child(3) {
  animation-delay: 0.3s;
}

/* Animação para entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efeitos de hover */
.products .item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

.products .item.promo {
  border: 2px solid #ffd700;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.products .item.promo:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3) !important;
  border-color: #ffa500;
}

.products .btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.products .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.products .btn:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

.products .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.products .btn:hover::before {
  width: 300px;
  height: 300px;
}

.products .item img {
  transition: transform 0.3s ease;
}

.products .item:hover img {
  transform: scale(1.1) rotate(2deg);
}

.products .price {
  transition: all 0.3s ease;
}

.products .item:hover .price {
  transform: scale(1.1);
  color: #007bff;
}

.products .savings i {
  transition: all 0.3s ease;
}

.products .item:hover .savings i {
  transform: scale(1.2);
  color: #28a745;
}

.products .item.promo::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }

  100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
}

.products .item-header {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000;
  font-weight: bold;
  animation: pulse-header 2s infinite;
}

@keyframes pulse-header {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.products .totals {
  transition: all 0.3s ease;
}

.products .item:hover .totals {
  transform: scale(1.05);
  font-weight: bold;
}

.products .savings {
  transition: all 0.3s ease;
}

.products .item:hover .savings {
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .vturb {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .products .item:hover {
    transform: translateY(-4px);
  }

  .products .item.promo:hover {
    transform: translateY(-6px) scale(1.01);
  }

  .products .btn:hover {
    transform: scale(1.02);
  }
}

.products span:contains('FREE') {
  animation: highlight 2s infinite;
}

@keyframes highlight {
  0%,
  100% {
    color: #dc3545;
  }

  50% {
    color: #28a745;
  }
}

.footer {
  text-align: center;
  padding: 29px;
  font-size: 12px;
  color: var(--light-color);
  border-top: 2px solid var(--border-light);
  margin-top: 40px;
  background-color: var(--primary-color-dark);
  border-radius: 0 0 12px 12px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  width: 100%;
}

.footer a {
  color: var(--primary-blue);
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}

.faq {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e9ecef, transparent);
}

.faq h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 3rem;
  position: relative;
  text-align: center;
}

.faq h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  border-radius: 2px;
}

.accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-bg: transparent;
  --bs-accordion-transition: all 0.3s ease;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px !important;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.accordion-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #007bff, #0056b3);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: top;
}

.accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
  border-color: #007bff;
}

.accordion-item:hover::before {
  transform: scaleY(1);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  background: transparent !important;
  border: none !important;
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50 !important;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%) !important;
  color: #007bff !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border: none !important;
}

.accordion-button::after {
  background-image: none;
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #007bff;
  transition: all 0.3s ease;
  transform: rotate(0deg);
  width: auto;
  height: auto;
  margin-left: auto;
}

.accordion-button:not(.collapsed)::after {
  content: '−';
  transform: rotate(180deg);
  color: #007bff;
}

.accordion-button:hover::after {
  transform: scale(1.2);
}

.accordion-collapse {
  transition: all 0.4s ease !important;
}

.accordion-body {
  padding: 0 2rem 2rem 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #5a6c7d;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  opacity: 0;
  animation: fadeIn 0.4s ease 0.1s forwards;
}

.accordion-body ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.accordion-body li {
  margin-bottom: 0.8rem;
  position: relative;
}

.accordion-body li::marker {
  color: #007bff;
}

.accordion-body strong {
  color: #2c3e50;
  font-weight: 600;
}

.accordion-item:nth-child(1) {
  animation-delay: 0.1s;
}

.accordion-item:nth-child(2) {
  animation-delay: 0.2s;
}

.accordion-item:nth-child(3) {
  animation-delay: 0.3s;
}

.accordion-item:nth-child(4) {
  animation-delay: 0.4s;
}

.accordion-item:nth-child(5) {
  animation-delay: 0.5s;
}

.accordion-item:nth-child(6) {
  animation-delay: 0.6s;
}

.accordion-item:nth-child(7) {
  animation-delay: 0.7s;
}

.accordion-item:nth-child(8) {
  animation-delay: 0.8s;
}

.accordion-item:nth-child(9) {
  animation-delay: 0.9s;
}

.accordion-button:hover {
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%) !important;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .faq {
    padding: 60px 0;
  }

  .faq h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .accordion-button {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
  }

  .accordion-item {
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 576px) {
  .faq h2 {
    font-size: 1.75rem;
  }

  .accordion-button {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .accordion-body {
    padding: 0 1.25rem 1.25rem 1.25rem;
    font-size: 0.9rem;
  }
}

.accordion-item.featured {
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  border-color: #ffc107;
}

.accordion-item.featured::before {
  background: linear-gradient(180deg, #ffc107, #ff9800);
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.accordion-item.loading .accordion-button::after {
  content: '⟳';
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
