/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: #ffffff;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Hero Section com estilo tecnológico e degradês nos cantos */
.hero {
    position: relative;
    background: #050816;
    /* Fundo base muito escuro */
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

/* Efeitos de degradê nos cantos para estilo tecnológico */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(15, 27, 94, 0.4) 0%, rgba(5, 8, 22, 0) 70%);
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(28, 67, 153, 0.3) 0%, rgba(5, 8, 22, 0) 70%);
    z-index: 1;
}

/* Efeito de grade tecnológica sutil */
.hero .container {
    position: relative;
    z-index: 2;
    background-image:
        linear-gradient(rgba(10, 17, 51, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 17, 51, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 8px;
}

/* Estilo para o badge de versão */
.version-badge {
    font-family: 'Inter', 'Inter Placeholder', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: rgb(230, 224, 254);
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 6px 12px;
    display: inline-block;
    margin: 80px auto 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    letter-spacing: 0.2px;
}

/* Estilo para o título principal */
.hero h1 {
    font-family: 'Plus Jakarta Sans', 'Plus Jakarta Sans Placeholder', sans-serif;
    font-size: 54px;
    font-weight: 600;
    line-height: 65px;
    margin: 20px auto 0;
    width: 100%;
    max-width: 850px;
    color: #ffffff;
    text-align: center;
    padding: 0;
    font-style: normal;
    letter-spacing: -0.3px;
}

/* Estilos específicos para cada linha do título */
.hero h1 .line1 {
    display: block;
    margin-bottom: 10px;
    font-size: 54px;
}

.hero h1 .line2 {
    display: block;
    margin: 0 auto;
    font-size: 54px;
    /* Garantindo que ambas as linhas estejam centralizadas */
    text-align: center;
}

/* Estilo para o subtítulo */
.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: rgb(155, 155, 189);
    max-width: 1000px;
    margin: 30px auto 0;
    text-align: center;
    letter-spacing: -0.3px;
}

/* Estilos específicos para cada linha do subtítulo */
.subtitle-line1,
.subtitle-line2 {
    display: block;
    white-space: nowrap;
    /* Impede quebra de linha dentro do span */
    overflow: visible;
}

.subtitle-line1 {
    margin-bottom: 5px;
    width: 100%;
    font-size: 14px;
}

.subtitle-line2 {
    max-width: 850px;
    margin: 0 auto;
    font-size: 14px;
    word-spacing: -1px;
}

/* Versões diferentes do subtítulo para desktop e mobile */
.mobile-subtitle {
    display: none;
}

/* Estilo para o container do vídeo */
.video-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.video-container::before {
    content: "";
    display: block;
    padding-top: 56.25%;
    /* Proporção 16:9 */
}

.video-container iframe {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 8px;
}

/* Estilo para a frase de prova social */
.proof-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(200, 200, 255, 0.9);
    max-width: 700px;
    margin: 25px auto 20px;
    text-align: center;
    letter-spacing: 0;
    white-space: nowrap;
}

.proof-text strong {
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Estilo para o botão de CTA e garantia */
.cta-container {
    width: 90%;
    max-width: 400px;
    margin: 40px auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, rgba(250, 250, 255, 0.95) 0%, rgba(235, 235, 250, 0.95) 100%);
    color: #050816;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 50px;
    width: auto;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200, 190, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(200, 190, 255, 0.9) 0%, rgba(160, 150, 255, 0.9) 100%);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.cta-arrow {
    font-size: 22px;
    margin-left: 5px;
    font-weight: 400;
}

.guarantee-text {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon {
    margin-right: 6px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
        line-height: 34px;
        padding: 20px 0;
    }

    .hero h1 .line1,
    .hero h1 .line2 {
        font-size: 28px;
    }

    .hero h1 .line1 {
        margin-bottom: 6px;
    }

    .version-badge {
        font-size: 12px;
        line-height: 15px;
        padding: 6px 12px;
        margin: 100px auto 15px;
    }

    /* Ajustes para o subtítulo em tablets */
    .subtitle {
        font-size: 13px;
        line-height: 17px;
        margin: 25px auto 0;
        max-width: 90%;
    }

    .subtitle-line1,
    .subtitle-line2 {
        white-space: normal;
    }

    .subtitle-line2 {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
        line-height: 30px;
        width: 100%;
        max-width: 100%;
    }

    .hero h1 .line1,
    .hero h1 .line2 {
        font-size: 24px;
        white-space: nowrap;
        overflow: visible;
        width: 100%;
        display: block;
    }

    .hero h1 .line1 {
        margin-bottom: 8px;
    }

    .hero h1 .line2 {
        margin: 0 auto;
    }

    .container {
        padding: 0 15px;
    }

    /* Mostrar versão simplificada do subtítulo em smartphones */
    .desktop-subtitle {
        display: none;
    }

    .mobile-subtitle {
        display: block;
        font-size: 16px;
        line-height: 24px;
        margin: 25px auto 0;
        max-width: 90%;
        color: rgb(155, 155, 189);
        text-align: center;
    }

    /* Ajustes para o vídeo em smartphones */
    .video-container {
        width: 95%;
        margin: 30px auto;
        padding: 8px;
    }

    .video-container iframe {
        top: 8px;
        left: 8px;
        width: calc(100% - 16px);
        height: calc(100% - 16px);
    }

    /* Ajustes para o texto de prova social em smartphones */
    .proof-text {
        font-size: 13px;
        line-height: 18px;
        white-space: normal;
        padding: 0 10px;
        margin: 20px auto 15px;
    }

    /* Ajustes para o botão de CTA em smartphones */
    .cta-container {
        width: 95%;
        margin: 25px auto 50px;
    }

    .cta-button {
        font-size: 20px;
        padding: 16px 24px;
    }

    .guarantee-text {
        font-size: 13px;
        margin-top: 12px;
    }
}

/* Esti
los para a seção de problemas */
.problems {
    background: linear-gradient(135deg, #0f1a40 0%, #1e3a8a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Efeito de padrão de fundo */
.problems::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.5;
    z-index: 1;
}

.problems .container {
    position: relative;
    z-index: 2;
}

/* Título da seção */
.problems h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

/* Introdução */
.problems-intro {
    text-align: center;
    margin-bottom: 50px;
}

.intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.intro-text em {
    font-style: italic;
    color: rgba(200, 200, 255, 0.9);
}

.intro-text strong {
    font-weight: 600;
    color: #ffffff;
}

.process-text {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
}

.process-text em {
    font-style: normal;
    font-weight: 700;
    color: #ff9d00;
}

/* Conteúdo principal */
.problems-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
    gap: 40px;
}

.problems-text {
    flex: 1;
}

.question-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Lista de problemas */
.problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.x-mark {
    color: #ff5252;
    font-size: 20px;
    margin-right: 10px;
    font-weight: bold;
}

/* Conclusão */
.problems-conclusion {
    text-align: center;
    margin-top: 60px;
}

.conclusion-text {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.conclusion-text strong {
    font-weight: 700;
    color: #ff5252;
    letter-spacing: 0.5px;
}

/* Botão CTA secundário */
.secondary-cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.secondary-cta-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Placeholders para imagens */
.image-placeholder {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin: 20px 0;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tools-logos {
    height: 80px;
    min-height: auto;
    margin: 30px auto;
    max-width: 600px;
}

#comparison-diagram {
    flex: 1;
    height: 300px;
}

#control-metaphor {
    height: 200px;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Responsividade */
@media (max-width: 768px) {
    .problems {
        padding: 60px 0;
    }

    .problems h2 {
        font-size: 28px;
    }

    .problems-content {
        flex-direction: column;
        gap: 20px;
    }

    .intro-text,
    .process-text,
    .question-text {
        font-size: 18px;
    }

    .problem-list li {
        font-size: 16px;
    }

    .conclusion-text {
        font-size: 20px;
    }

    #comparison-diagram {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .problems {
        padding: 40px 0;
    }

    .problems h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .intro-text,
    .question-text {
        font-size: 16px;
    }

    .process-text,
    .conclusion-text {
        font-size: 18px;
    }

    .problem-list li {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .secondary-cta-button {
        font-size: 14px;
        padding: 12px 20px;
    }

    #tools-logos {
        height: 60px;
    }

    #comparison-diagram,
    #control-metaphor {
        height: 180px;
    }
}

/* Se
ção de Contraste - Comparação entre abordagens */
.contrast-section {
    background: #050816;
    /* Mesmo fundo escuro da seção hero */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Efeito de grade técnica no fundo */
.contrast-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
    z-index: 1;
}

.contrast-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

/* Título principal da seção */
.contrast-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.contrast-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    border-radius: 3px;
}

/* Container de comparação */
.comparison-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 30px 0 50px;
    gap: 0;
}

/* Colunas de comparação */
.comparison-column {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.comparison-column.wrong-way {
    border: 1px solid rgba(67, 97, 238, 0.3);
    box-shadow: 0 5px 20px rgba(67, 97, 238, 0.1);
}

.comparison-column.right-way {
    border: 1px solid rgba(129, 164, 254, 0.3);
    box-shadow: 0 5px 20px rgba(129, 164, 254, 0.1);
}

.comparison-column:hover {
    transform: translateY(-5px);
}

/* Cabeçalho das colunas */
.column-header {
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.wrong-way .column-header {
    background: rgba(67, 97, 238, 0.1);
    border-bottom: 1px solid rgba(67, 97, 238, 0.2);
}

.right-way .column-header {
    background: rgba(129, 164, 254, 0.1);
    border-bottom: 1px solid rgba(129, 164, 254, 0.2);
}

.column-header h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -0.3px;
}

.wrong-way .column-header h3 {
    color: rgba(255, 82, 82, 0.85);
    text-shadow: 0 0 8px rgba(15, 26, 64, 0.2);
}

.right-way .column-header h3 {
    color: #81A4FE;
}

.header-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

.wrong-way .header-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.right-way .header-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Imagens de comparação */
.comparison-image {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comparison-image-content {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.comparison-image-content:hover {
    transform: scale(1.02);
}

/* Mantendo os estilos do placeholder para compatibilidade */
.image-placeholder {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.image-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

/* Listas de características */
.feature-list {
    list-style: none;
    padding: 20px 25px;
    margin: 0;
    flex-grow: 1;
}

.feature-list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.negative-list li {
    color: rgba(255, 255, 255, 0.8);
}

.positive-list li {
    color: rgba(255, 255, 255, 0.9);
}

.list-icon {
    margin-right: 10px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}

.negative-list .list-icon {
    color: rgba(255, 82, 82, 0.9);
}

.positive-list .list-icon {
    color: #81A4FE;
}

/* Rodapé das colunas */
.comparison-footer {
    padding: 15px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.comparison-footer.negative {
    background: rgba(67, 97, 238, 0.1);
    border-top: 1px solid rgba(67, 97, 238, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.comparison-footer.positive {
    background: rgba(129, 164, 254, 0.1);
    border-top: 1px solid rgba(129, 164, 254, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.comparison-footer strong {
    font-weight: 700;
}

.negative strong {
    color: rgba(255, 82, 82, 0.85);
    text-shadow: 0 0 10px rgba(15, 26, 64, 0.3);
}

.positive strong {
    color: #81A4FE;
}

/* Divisor central com VS */
.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    position: relative;
    z-index: 3;
}

.vs-text {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* CTA da seção */
.section-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.4;
}

.cta-headline strong {
    color: #81A4FE;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Botão CTA primário para esta seção */
.primary-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, rgba(250, 250, 255, 0.95) 0%, rgba(235, 235, 250, 0.95) 100%);
    color: #050816;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 50px;
    width: auto;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200, 190, 255, 0.3);
}

.primary-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(200, 190, 255, 0.9) 0%, rgba(160, 150, 255, 0.9) 100%);
}

.primary-cta-button .cta-arrow {
    font-size: 20px;
    margin-left: 5px;
}

/* Responsividade */
@media (max-width: 900px) {
    .comparison-container {
        flex-direction: column;
        gap: 40px;
    }

    .comparison-divider {
        width: 100%;
        height: 50px;
    }

    .vs-text {
        margin: 0;
    }

    .contrast-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .column-header h3 {
        font-size: 18px;
    }

    .feature-list li {
        font-size: 15px;
    }

    .comparison-footer {
        font-size: 16px;
    }

    .cta-headline {
        font-size: 20px;
    }

    .primary-cta-button {
        font-size: 16px;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .contrast-section {
        padding: 50px 0;
    }

    .contrast-section .container {
        padding: 0 25px;
    }

    .contrast-section h2 {
        font-size: 22px;
        margin-bottom: 30px;
        padding: 0 20px 15px;
        line-height: 1.3;
    }

    .comparison-container {
        margin: 20px 0 30px;
    }

    .comparison-column {
        border-radius: 8px;
        margin: 0;
    }

    .column-header {
        padding: 20px 15px;
    }

    .column-header h3 {
        font-size: 18px;
    }

    .header-subtitle {
        font-size: 14px;
    }

    .comparison-image {
        padding: 15px;
    }

    .comparison-image-content {
        border-radius: 6px;
    }

    .feature-list {
        padding: 15px 20px;
    }

    .feature-list li {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .list-icon {
        margin-right: 8px;
    }

    .comparison-footer {
        font-size: 15px;
        padding: 12px 10px;
    }

    .section-cta {
        margin-top: 35px;
        padding: 0 20px;
    }

    .cta-headline {
        font-size: 18px;
        padding: 0 20px;
        line-height: 1.4;
    }

    .primary-cta-button {
        font-size: 14px;
        padding: 12px 20px;
        width: 90%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
}

/* Seção 
de Possibilidades - O que você pode criar */
.possibilities-section {
    background: linear-gradient(135deg, #050816 0%, #0a1128 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Efeito de partículas no fundo */
.possibilities-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(67, 97, 238, 0.15) 0%, transparent 100px),
        radial-gradient(circle at 80% 70%, rgba(129, 164, 254, 0.1) 0%, transparent 100px);
    opacity: 0.6;
    z-index: 1;
}

.possibilities-section .container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
}

/* Título da seção */
.possibilities-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.possibilities-section .highlight {
    background: linear-gradient(90deg, #4361EE, #81A4FE);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0 5px;
}

/* Container de cards */
.cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto 50px;
    max-width: 1200px;
}

/* Estilo dos cards */
.app-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4361EE, #81A4FE);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.app-card:hover::before {
    opacity: 1;
}

/* Ícone do card */
.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Título do card */
.app-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Descrição do card */
.app-card p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Texto final */
.imagination-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin-top: 40px;
}

/* Responsividade */
@media (max-width: 1200px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 900px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .possibilities-section h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .possibilities-section {
        padding: 70px 0;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .possibilities-section h2 {
        font-size: 26px;
        padding: 0 20px;
    }

    .app-card {
        padding: 25px 15px;
    }

    .card-icon {
        font-size: 40px;
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .app-card h3 {
        font-size: 18px;
    }

    .app-card p {
        font-size: 14px;
    }

    .imagination-text {
        font-size: 20px;
        padding: 0 20px;
    }
}

/* Seção
 de Possibilidades - O que você pode criar */
.possibilities-section {
    background: linear-gradient(135deg, #050816 0%, #0a1128 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Efeito de partículas no fundo */
.possibilities-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(67, 97, 238, 0.15) 0%, transparent 100px),
        radial-gradient(circle at 80% 70%, rgba(129, 164, 254, 0.1) 0%, transparent 100px);
    opacity: 0.6;
    z-index: 1;
}

.possibilities-section .container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
}

/* Título da seção */
.possibilities-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.possibilities-section .highlight {
    background: linear-gradient(90deg, #4361EE, #81A4FE);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0 5px;
}

/* Container de cards */
.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 0 auto 50px;
    max-width: 1200px;
    padding: 0 20px;
}

/* Estilo dos cards */
.app-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 260px;
    margin-bottom: 10px;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Container da imagem */
.card-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(15, 23, 42, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.app-card:hover .card-image-placeholder {
    transform: scale(1.05);
}

/* Conteúdo do card (texto) */
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(5, 8, 22, 0.95), rgba(5, 8, 22, 0.7) 60%, rgba(5, 8, 22, 0.4) 85%, transparent);
    z-index: 3;
    text-align: left;
    padding-bottom: 25px;
}

/* Título do card */
.app-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Descrição do card */
.app-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Texto final */
.imagination-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin-top: 40px;
}

/* Responsividade */
@media (max-width: 1200px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .possibilities-section h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .app-card {
        height: 280px;
    }
}

@media (max-width: 600px) {
    .possibilities-section {
        padding: 50px 0;
    }

    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 15px;
    }

    .possibilities-section h2 {
        font-size: 22px;
        padding: 0 15px;
        margin-bottom: 25px;
    }

    .app-card {
        height: 170px;
        max-width: 100%;
        margin: 0 auto;
        border-radius: 8px;
    }

    .app-card h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .app-card p {
        font-size: 11px;
        line-height: 1.3;
    }

    .card-content {
        padding: 10px 12px;
    }

    .imagination-text {
        font-size: 16px;
        padding: 0 15px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }

    .app-card {
        height: 140px;
    }

    .app-card h3 {
        font-size: 13px;
        margin-bottom: 1px;
    }

    .app-card p {
        font-size: 10px;
        line-height: 1.2;
    }

    .card-content {
        padding: 8px 10px;
    }
}

@media (max-width: 380px) {
    .cards-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .app-card {
        height: 180px;
        max-width: 280px;
    }

    .app-card h3 {
        font-size: 16px;
    }

    .app-card p {
        font-size: 12px;
    }

    .card-content {
        padding: 12px 15px;
    }
}

/*
 Correção definitiva para a responsividade dos cards */
@media (max-width: 1200px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .app-card {
        height: 240px;
    }
}

@media (max-width: 900px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .app-card {
        height: 220px;
    }
}

@media (max-width: 600px) {
    .cards-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .app-card {
        height: 200px !important;
        max-width: 450px !important;
        margin: 0 auto !important;
    }

    .card-content {
        padding: 15px !important;
    }

    .app-card h3 {
        font-size: 18px !important;
        margin-bottom: 5px !important;
    }

    .app-card p {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }
}

/* C
ORREÇÃO DEFINITIVA PARA MOBILE - CARDS UM POR LINHA */
@media (max-width: 767px) {
    .cards-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 20px !important;
    }

    .app-card {
        height: 220px !important;
        max-width: 450px !important;
        margin: 0 auto 10px !important;
    }

    .card-content {
        padding: 15px 20px !important;
    }

    .app-card h3 {
        font-size: 18px !important;
        margin-bottom: 5px !important;
    }

    .app-card p {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }
}/* CORR
EÇÃO FINAL PARA MOBILE - CARDS EXATAMENTE COMO DESKTOP MAS EM COLUNA */
@media (max-width: 767px) {
    .cards-container {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 20px !important;
    }
    
    .app-card {
        height: 260px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        border-radius: 12px !important;
        transform: none !important;
    }
    
    .card-image-container {
        height: 100% !important;
    }
    
    .card-image-placeholder {
        height: 100% !important;
    }
    
    .card-content {
        padding: 20px !important;
        background: linear-gradient(to top, rgba(5, 8, 22, 0.95), rgba(5, 8, 22, 0.7) 60%, rgba(5, 8, 22, 0.4) 85%, transparent) !important;
    }
    
    .app-card h3 {
        font-size: 18px !important;
        margin-bottom: 5px !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    }
    
    .app-card p {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }
}

/* Garantir que não haja transformações indesejadas */
@media (max-width: 480px) {
    .app-card {
        height: 260px !important;
        transform: none !important;
    }
    
    .app-card:hover {
        transform: none !important;
    }
}/
* CORREÇÃO DEFINITIVA PARA GARANTIR CARDS IDÊNTICOS AO DESKTOP */
@media (max-width: 767px) {
    /* Reset completo de qualquer estilo anterior que possa estar interferindo */
    .possibilities-section * {
        box-sizing: border-box !important;
    }
    
    .cards-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        padding: 0 20px !important;
        width: 100% !important;
    }
    
    .app-card {
        width: 100% !important;
        height: 260px !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 12px !important;
        transform: none !important;
        flex-shrink: 0 !important;
        display: block !important;
    }
    
    .card-image-container {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .card-image-placeholder {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        background-position: center !important;
    }
    
    .card-content {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 20px !important;
        background: linear-gradient(to top, rgba(5, 8, 22, 0.95), rgba(5, 8, 22, 0.7) 60%, rgba(5, 8, 22, 0.4) 85%, transparent) !important;
        z-index: 3 !important;
    }
}/
* SOLUÇÃO FINAL PARA MOBILE - RESET COMPLETO E RECONSTRUÇÃO */
@media (max-width: 767px) {
    .cards-container {
        display: block !important;
        padding: 0 20px !important;
    }
    
    .app-card {
        width: 100% !important;
        height: 260px !important;
        margin-bottom: 25px !important;
        position: relative !important;
        overflow: hidden !important;
        border-radius: 12px !important;
    }
    
    .app-card:hover {
        transform: none !important;
    }
    
    .app-card::before {
        display: none !important;
    }
    
    .card-image-container,
    .card-image-placeholder {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .card-content {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 20px !important;
        text-align: left !important;
    }
    
    .app-card h3 {
        font-size: 18px !important;
        margin-bottom: 5px !important;
    }
    
    .app-card p {
        font-size: 14px !important;
    }
}