body {
    font-family: "Lato", sans-serif;
}

:root {
    --roxo: #3d006c;
    --cinza: #f4f6fa;
    --branco: #ffffff;
}

.bg-cinza {
    background: var(--cinza);
}

.bg-roxo {
    background: var(--roxo);
}

.bg-branco {
    background: var(--branco);
}

.txt-roxo {
    color: var(--roxo);
}

.marcador{
  color: var(--roxo);
  background: #3d006c1a;
  margin: 0.5em;
  margin-top: 0.5em;
  font-size: 0.6rem;
  line-height: 1.2em;
  padding: 0.33em;
  margin-left: 7.8rem;
  border-radius: 0.3em;
  text-align: right;
  width: 9rem;
}

.infotip{
  margin-left: 11.7rem;
}

.txt-branco {
    color: var(--branco);
}

.border-roxo {
    border: 2px solid var(--roxo);
}

.w-95 {
    width: 95%;
}

.w-130 {
    width: 40%;
}

.w-150 {
    width: 130%;
}

.h-auto {
    height: auto;
}

.btn-outline {
    border: 2px solid var(--roxo);
    color: var(--roxo);
    background-color: transparent;
    padding: 1rem 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    height: 3rem;
    width: 7rem;
    text-align: right;
    margin-right: 0.5rem;
}

.btn-outline:hover {
    background-color: var(--roxo);
    color: var(--cinza);
}

.btn-filled {
    border: 2px solid transparent;
    background-color: var(--roxo);
    color: var(--cinza);
    padding: 1rem 1.0rem;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    height: 3rem;
    width: 9rem;
    text-align: right;
}

.btn-filled:hover {
    background-color: var(--cinza);
    color: var(--roxo);
    border: 2px solid var(--roxo);
}

.btn-branco {
    border: 2px solid transparent;
    background-color: var(--branco);
    color: var(--roxo);
    padding: 1rem 1.0rem;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    height: 3rem;
    width: 11rem;
    text-align: right;
}

.btn-branco:hover {
    background-color: var(--roxo);
    color: var(--branco);
    border: 2px solid var(--branco);
}

.card {
    background-color: none; /* Cor roxa com opacidade */
    color: var(--branco);
    padding: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    margin-bottom: 0rem;
    border: 0px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
}

.card:hover {
    background-color: rgba(125, 65, 150, 0.2);
}

.card.active {
    background-color: rgba(125, 65, 150, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.faq {
    background-color: none; /* Cor roxa com opacidade */
    color: var(--branco);
    padding: 1.5rem;
    border-radius: 0.75rem;

    align-items: center;
    margin-bottom: 0rem;
    border: 0px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

.faq:hover {
    background-color: rgba(125, 65, 150, 0.2);
}

.faq.active {
    background-color: rgba(125, 65, 150, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(122, 71, 162, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    border: 2px #ffffff61 solid;
}




.icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--branco);
}

.accordion-content {
    display: none;
    transition: max-height 0.2s ease-out;
}
.accordion-content.expanded {
    display: block;
    max-height: 1000px; /* Maximum height when expanded */
}
.faq.active {
    background-color: rgba(125, 65, 150, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.flex.items-center.space-x-4 h2 {
    margin-right: 1rem;
}

.rounded-5xl {
    border-radius: 4rem;
}

.efeito2 {
    background: linear-gradient(45deg, #a787bf, #3d006c, #a787bf);
    background-size: 400% 400%;
    animation: gradient2 20s ease infinite;
}

@keyframes gradient2 {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.efeito {
    background: linear-gradient(-45deg, #3d006c, #291737, #166DBA, #2b0d41, #136378, #a787bf, #3d006c, #6C4A73, #5C45B0);
    background-size: 600% 600%;
    animation: gradient 45s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.blur-text {
    
    color: rgba(255, 255, 255, 0.8);
    
}


.plan-features {
    display: table;
    width: 100%;
    margin-top: 1em;
    border-collapse: collapse;
    border-radius: 10px; /* Adiciona bordas arredondadas à tabela */
    overflow: hidden; /* Garante que o conteúdo da tabela respeite as bordas arredondadas */
}

.plan-features.visible {
    display: table;
}

.plan-features th, .plan-features td {
    padding: 0.75em;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.plan-features th {
    background-color: #743bcb;
    color: white;
    font-weight: bold;
}

.plan-features tr:nth-child(even) {
    background-color: #f8f8ff;
}

.plan-features tr:nth-child(odd) {
    background-color: #f3e8ff;
}

.plan-features tr:hover {
    background-color: #d1c4e9;
}

.plan-features td {
    color: #3d000c;
}

/* Bordas arredondadas nas extremidades */
.plan-features tr:first-child th:first-child {
    border-top-left-radius: 10px;
}

.plan-features tr:first-child th:last-child {
    border-top-right-radius: 10px;
}

.plan-features tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.plan-features tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.tbody, td, tfoot, th, thead, tr{border:none!important};

.green{color:#3CB179};

.red{color:#FF0000};

.accordion-content {
    display: none;
    transition: max-height 0.2s ease-out;
}
.accordion-content.expanded {
    display: block;
    max-height: 1000px; /* Maximum height when expanded */
}
.faq.active {
    background-color: rgba(125, 65, 150, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.bg-cont {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.background-blur {
    position: absolute;
    top: 4rem;
    left: -4rem;
    width: 100%;
    height: 100%;
    filter: blur(20px);
    z-index: 1;
    background: radial-gradient(circle, #3d006c5c 20%, transparent 80%);
}

.content {
    position: relative;
    z-index: 2;
}


.scroll-container {
  display: flex;
  overflow-x: hidden;
  white-space: nowrap;
  position: relative;
}
.scroll-content {
  display: flex;
  animation: scroll 80s linear infinite;
}
.scroll-content:hover {
  animation-play-state: paused;
}
.scroll-item {
  flex: none;
  margin-right: 1rem;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



.popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffffffdb;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
    width: 90%;
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: scale(0.9);
    transform-origin: top left;
    transition: all 0.6s ease;
    backdrop-filter: blur(8px);
}

.popup.open {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.popup.close {
    opacity: 0;
    transform: scale(0.9);
    transform: scale(0.9) translate(120px, 120px);
}

.popup .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #3d006c;
}

.popup h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #3d006c; /* Cor principal do site */
    font-weight: bold;
}

.popup p {
    font-size: 1rem;
    color: #000;
    margin: 10px 0;
}

.popup .button {
    display: inline-block;
    margin: 10px 5px 0 0;
    padding: 9px 12px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.popup .button i {
    margin-right: 8px;
}

.popup .whatsapp {
    background: #25D366;
}

.popup .whatsapp:hover {
    background: #1da851;
}

.popup .teste-gratis {
    background: #3d006c;
}

.popup .teste-gratis:hover {
    background: #290047;
}

.popup .teste-gratis img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.button-container {
    display: flex;
    gap: 10px;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}


/* Estilos específicos para mobile */
@media (max-width: 768px) {
    .infotip{margin-left:0rem}

    .icon {
        
    }

    .card {
        display: none;
    }

    .tab {
        cursor: pointer;
        padding: 0.5rem;
        padding-left:1.5rem;
        padding-right:1.5rem;
        background: none;
        color: var(--branco);
        border-radius: 1.8rem;
        margin: 0.2rem;
        transition: background-color 0.3s;
        display: ruby; /* Mostrar as abas no mobile */
        width:auto;
    }

    .tab:hover {
        background: rgba(125, 65, 150, 0.5);
    }

    .tab.active {
        background: var(--branco);
        color: var(--roxo);
    }

    .card-content {
        display: none;
    }

    .card.active .card-content {
        display: block;
    }

    .tab-content {
        display: none;
        margin-top: 0rem;
    }

    .tab-content.active {
        display: block;
    }
}

/* Estilos específicos para desktop */
@media (min-width: 769px) {
    .tab {
        display: none; /* Ocultar as abas no desktop */
    }

    .tab-content {
        display: none;
    }
}