.infs {
    background-color: #ff0000;
    color: #fff;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -20%);
    width: 1350px;
}

.p-3 {
    padding: 0 !important;
}

.text-gray-600 {
    font-size: 20px;
}

span.\.text-gray-600 {
    font-size: 20px;
    font-weight: normal !important;
}

.icon-svg {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flex.items-center.mb-4.md\:mb-0 {
    height: 150px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
}

.container.mx-auto.px-5 {
    max-width: 1400px;
}

@media (max-width: 1440px) {
    .infs {
        width: 1200px;
    }
}

@media (max-width: 1300px) {
    .infs {
        width: 1000px;
    }
}

@media (max-width: 1000px) {
    .infs {
        width: 800px;
    }
}

.gradient-button {
    position: relative;
    display: inline-block;
    padding: 4px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(91deg, #ffffff, #ffffff00, #ffffff);
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.28, 0.03, 0.57, 1.01), box-shadow 0.3s ease;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.26);
}

.gradient-button span {
    display: block;
    position: relative;
    background: linear-gradient(110deg, #cb0000, #df0000, #ff0000);
    padding: 20px 30px;
    border-radius: 100px;
    font-size: 20px;
    overflow: hidden;
    z-index: 1;
}

/* Reflexo por cima com ::after */
.gradient-button span::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgb(255 255 255 / 30%) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 2.5s infinite linear;
    z-index: 2;
    pointer-events: none;
}

/* Animação do reflexo */
@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/* Hover animado */
.gradient-button:hover {
    transform: scale(1.05);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 20px 10px rgb(255 0 0 / 12%)
    }

    50% {
        box-shadow: 0 0 30px 5px rgb(255 0 0 / 48%)
    }

    100% {
        box-shadow: 0 0 20px 10px rgb(255 0 0 / 12%)
    }
}

.title-home {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .inf-topo-vd {
        flex-direction: column-reverse !important;
        padding: 0px !important;
    }

    .title-home {
        text-align: center !important;
        align-items: center !important;
    }
}

@media (min-width: 768px) {
    .infs {
        border-width: 1px 1px 1px 1px;
        border-color: #dddddd99;
    }
}

@media (max-width: 768px) {
    .infs {
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        width: 100% !important;
    }

    .infs>.flex {
        display: flex !important;
        flex-direction: row !important;
        gap: 1rem;
        width: max-content;
    }

    .infs>.flex>div {
        flex: 0 0 auto;
        min-width: 220px;
    }

    .flex.items-center.mb-4.md\:mb-0 {
        width: auto !important;
        padding: 0px 40px !important;
        margin-bottom: 0 !important;
        height: 100px;
        scale: 1.1 !important;
    }
}

@media (max-width: 768px) {
    .infs {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .infs {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .infs::-webkit-scrollbar {
        height: 1px;
        width: 0px;
    }

    .infs::-webkit-scrollbar-track {
        background: transparent;
    }

    .infs::-webkit-scrollbar-thumb {
        background-color: white;
        border-radius: 10px;
    }
}

html {
    scroll-behavior: smooth;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: none;
}

/* Fundo aparece com fade-in */
.fade-in-static {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Zoom-in dos elementos filhos */
.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    animation: zoomIn 0.6s ease-out forwards;
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Delays progressivos */
.delay-0 {
    animation-delay: 0.5s;
}

.delay-1 {
    animation-delay: 0.7s;
}

.delay-2 {
    animation-delay: 0.9s;
}

.flex.items-center.mb-4.md\:mb-0.zoom-in.delay-1 {
    border-left: 1px solid;
    border-right: 1px solid;
    border-image: linear-gradient(to bottom, transparent, #dddddd, transparent) 1;
}

.bg-black {
    background: linear-gradient(120deg, #000000, #000, #0c0c0c, #000000, #000000);
    background-size: 600% 600%;
    animation: darkFlow 20s linear infinite;
    color: white;
}

/* Animação contínua lateral */
@keyframes darkFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.tx-an {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.tx-an.fade-in-text {
  opacity: 1;
  transform: translateY(0);
}

h2.text-3xl.md\:text-4xl.font-bold.text-center.mb-12.fade-in-text {
    margin-top: 150px;
}

.fade-in-section.fd2.visible {
    transition-delay: 0.6s;
}

.text-gray-600 {
    color: black;
}

body {
    font-family: "Inter", sans-serif;
}

.benefit-card {
    text-align: left;
    padding: 250px 30px 40px 30px;
    border-width: 0.5px 0.5px 0.5px 0.5px;
    border-color: #434343;
}

.icn-card-svg {
    justify-content: flex-start;
    margin: 0;
}

.ps-2 {
    font-size: 18px;
    margin-bottom: 13px;
}

.size-pers1 {
    font-size: 25px;
    padding-bottom: 15px;
    margin: 0;
}

svg.h-8.w-8.text-white {
    width: 3rem;
    height: 3rem;
    margin-bottom: 30px;
    fill: #ff0000;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 1;
}

.benefit-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.benefit-card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}

.benefit-card > * {
  position: relative;
  z-index: 2;
}

.t-w {
    color: #fff;
}

.t-r {
    color: red;
}

.bg-orange-500.rounded-full.w-12.h-12.flex.items-center.justify-center.text-white.font-bold.text-xl {
    background-color: red;
}

.w-px.flex-1.bg-white.opacity-30 {
    width: 1px;
    opacity: 1 !important;
}

.step-item.flex.mb-12 {
    margin: 0px;
}

p.text-gray-600.t-w.fade-in-text {
    margin-bottom: 50px !important;
}

.rounded-xl {
    border-radius: 0 !important;
}

.faq-open .bg-white {
    background-color: #ff0000;
    color: #fff;
    margin-bottom: -5px;
}

.faq-open .textstatic {
  color: #ffffff;
}

.p-4.border-t.textstatic.text-yellow-800 {
    background-color: #272727;
}

p.text-white.fade-in-text.ps-2 {
    color: #cfcfcf;
}

h3.text-white.text-xl.font-bold.mb-2.size-pers1.fade-in-text {
    font-size: 30px;
}

@media (max-width: 768px) {
  footer.bg-black.text-white.py-8 {
    padding: 50px 0 !important;
  }

  .flex.flex-col.md\:flex-row.justify-between.items-center {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .logo-footer-mob {
    display: block;
    margin-bottom: 15px;
  }

  .flex.space-x-4 {
    margin-bottom: 20px;
  }

  a.text-gray-400.hover\:text-white.transition.duration-300 {
    margin-left: 0 !important;
    padding: 0 15px !important;
  }

  .logo-footer {
    display: none;
}
}

@media (min-width: 769px) {
  .logo-footer-mob {
    display: none;
  }
}

.rounded-lg {
    border-radius: 0.8rem !important;
}

div#play-button:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translate(-50%, -50%) scale(1.05) !important;
}

h2 {
    font-family: "Big Shoulders", sans-serif;
    text-transform: uppercase;
    font-size: 40px !important;
}