
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
}
.cta-button {
    transition: all 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(70, 117, 229, 0.4);
}
.feature-card-new {
    transition: all 0.3s ease;
}
.feature-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(70, 117, 229, 0.1), 0 10px 10px -5px rgba(70, 117, 229, 0.04);
}
/* Estilo para o iframe responsivo */
.responsive-iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* Proporção 16:9 */
}
.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
/* Estilos para o Toggle de Preços */
.pricing-toggle-button {
    transition: all 0.2s ease-in-out;
}
.client-logo {
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.6;
}
.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.integrations-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    transform: translate(-50%, -50%);
    background-image: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.15), transparent 70%),
    radial-gradient(ellipse at center, rgba(70, 117, 229, 0.15), transparent 70%);
    filter: blur(100px);
    z-index: 0;
}
.highlight-yellow {
    background: linear-gradient(to top, #fef08a 45%, transparent 45%);
    padding: 0 0.1em;
    margin: 0 -0.1em;
}

.highlight-blue {
    background: linear-gradient(to top, #eef2ff 60%, transparent 60%);
    padding: 0 0.1em;
    margin: 0 -0.1em;
}
/* Estilos para o acordeão do FAQ com JS */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* páginação */
.paginator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0
}

.paginator a,.paginator span {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #ccc;
    color: #555;
    font-weight: bold;
    text-decoration: none;
    transition-duration: 0.2s;
    border: none;
}


.paginator a:hover {
    background: #4675e5;
    background-size: 200%;
    color: #FBFBFB;
}

.paginator span {
    background: #4675e5;
    color: #fff;
}

.logos-clientes img {
    width: 120px;
    text-align: center;
}

.logos-clientes{
    justify-items: center;
}


.inactive-logo {
    filter: grayscale(100%);
    opacity: 0.4;
}

.legal-content h2 {
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
}
.legal-content h3 {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.legal-content p, .legal-content ul {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: #4b5563; /* gray-600 */
}
.legal-content ul {
    list-style-position: inside;
    list-style-type: disc;
}
.legal-content a {
    color: #4675E5;
    text-decoration: underline;
}

.period-1year, .info-discount-plan {
    display: none;
}

@media(min-width: 992px){
    .plans-container{
        margin-inline: auto;
        max-width: calc(1600px - 5.625rem * 2);
        width: 100%;
    }
}