/* ============================================================================
   SYLEN IA - IDENTIDADE VISUAL PREMIUM
   Dark Tech, Glassmorphism, Glow Roxo, Minimalismo
   ============================================================================ */

/* VARIÁVEIS DE COR */
:root {
    --roxo-principal: #7B4DFF;
    --roxo-glow: #9B6DFF;
    --roxo-escuro: #4A1FD1;
    --preto-premium: #050505;
    --cinza-escuro: #111111;
    --branco-premium: #F5F5F7;
    --cinza-tech: #B8B8C2;
    --cinza-claro: #2A2A3E;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #050505 0%, #0F0F1E 50%, #1A0F2E 100%);
    color: var(--branco-premium);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TIPOGRAFIA */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
    color: var(--cinza-tech);
    line-height: 1.8;
}

strong {
    color: var(--roxo-principal);
    font-weight: 600;
}

/* BOTÕES */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--roxo-principal), var(--roxo-glow));
    color: white;
    box-shadow: 0 0 20px rgba(123, 77, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(123, 77, 255, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--roxo-principal);
    border: 2px solid var(--roxo-principal);
}

.btn-secondary:hover {
    background: rgba(123, 77, 255, 0.1);
    box-shadow: 0 0 20px rgba(123, 77, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--branco-premium);
    border: 1px solid var(--cinza-claro);
}

.btn-outline:hover {
    background: rgba(123, 77, 255, 0.1);
    border-color: var(--roxo-principal);
    color: var(--roxo-principal);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* HEADER / NAVEGAÇÃO */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(123, 77, 255, 0.1);
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    display: block;
    height: 90px;
    width: auto;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--cinza-tech);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--roxo-principal);
}

/* HERO SECTION */
.hero {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 77, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--branco-premium), var(--roxo-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--roxo-glow);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--cinza-tech);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* SEÇÕES GENÉRICAS */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
    color: var(--cinza-tech);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* DIAGNÓSTICO */
.diagnostico {
    background: rgba(123, 77, 255, 0.02);
    border-top: 1px solid rgba(123, 77, 255, 0.1);
    border-bottom: 1px solid rgba(123, 77, 255, 0.1);
}

.diagnostico-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.diagnostico-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 77, 255, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
}

.diagnostico-card:hover {
    background: rgba(123, 77, 255, 0.05);
    border-color: var(--roxo-principal);
    box-shadow: 0 0 30px rgba(123, 77, 255, 0.15);
    transform: translateY(-5px);
}

.diagnostico-card h3 {
    margin-bottom: 15px;
    color: var(--branco-premium);
}

.diagnostico-card p {
    font-size: 0.95rem;
}

/* PROBLEMAS */
.problemas {
    background: linear-gradient(180deg, transparent, rgba(123, 77, 255, 0.03));
}

.problemas-list {
    display: grid;
    gap: 30px;
}

.problema-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 30px;
    background: rgba(255, 255, 255, 0.01);
    padding: 30px;
    border-radius: 12px;
    border-left: 3px solid var(--roxo-principal);
    transition: var(--transition);
}

.problema-item:hover {
    background: rgba(123, 77, 255, 0.05);
}

.problema-numero {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--roxo-principal), var(--roxo-glow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problema-conteudo h3 {
    margin-bottom: 10px;
    color: var(--branco-premium);
}

/* SOLUÇÃO */
.solucao {
    background: rgba(123, 77, 255, 0.02);
    border-top: 1px solid rgba(123, 77, 255, 0.1);
}

.solucao-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.solucao-pilares {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pilar {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 77, 255, 0.2);
    border-radius: 16px;
    padding: 35px;
    transition: var(--transition);
}

.pilar:hover {
    background: rgba(123, 77, 255, 0.08);
    border-color: var(--roxo-principal);
    box-shadow: 0 0 30px rgba(123, 77, 255, 0.2);
    transform: translateY(-5px);
}

.pilar h3 {
    margin-bottom: 15px;
    color: var(--branco-premium);
    font-size: 1.3rem;
}

.pilar p {
    font-size: 0.95rem;
}

/* MÓDULOS */
.modulos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.modulo-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 77, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
}

.modulo-card:hover {
    background: rgba(123, 77, 255, 0.08);
    border-color: var(--roxo-principal);
    box-shadow: 0 0 30px rgba(123, 77, 255, 0.2);
}

.modulo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(123, 77, 255, 0.15);
}

.modulo-header h3 {
    flex: 1;
    margin: 0;
    color: var(--branco-premium);
    font-size: 1.25rem;
}

.modulo-valor {
    background: linear-gradient(135deg, var(--roxo-principal), var(--roxo-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
    white-space: nowrap;
}

.modulo-desc {
    font-size: 0.95rem;
    color: var(--cinza-tech);
}

/* COMPARATIVO */
.comparativo {
    background: linear-gradient(180deg, rgba(123, 77, 255, 0.03), transparent);
    border-bottom: 1px solid rgba(123, 77, 255, 0.1);
}

.comparativo-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.plano {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 77, 255, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plano:hover {
    transform: translateY(-10px);
}

.plano-destaque {
    border-color: var(--roxo-principal);
    background: rgba(123, 77, 255, 0.08);
    box-shadow: 0 0 40px rgba(123, 77, 255, 0.2);
    transform: scale(1.02);
}

.plano-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, var(--roxo-principal), var(--roxo-glow));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.plano-header {
    margin-bottom: 25px;
}

.plano-nome {
    margin: 0 0 8px 0;
    color: var(--branco-premium);
}

.plano-subtitulo {
    color: var(--cinza-tech);
    font-size: 0.95rem;
    margin: 0;
}

.plano-preco {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 25px;
}

.preco-valor {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--roxo-principal), var(--roxo-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preco-periodo {
    color: var(--cinza-tech);
    font-size: 0.95rem;
}

.plano-usuarios {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(123, 77, 255, 0.05);
    border-radius: 8px;
}

.plano-usuarios p {
    margin: 0;
    font-size: 0.95rem;
}

.usuarios-extra {
    color: var(--roxo-glow);
    font-size: 0.85rem;
    margin-top: 5px !important;
}

.plano-modulos {
    margin-bottom: 25px;
    flex: 1;
}

.plano-modulos h4 {
    color: var(--branco-premium);
    margin-bottom: 12px;
    font-size: 1rem;
}

.plano-modulos ul {
    list-style: none;
}

.plano-modulos li {
    color: var(--cinza-tech);
    font-size: 0.95rem;
    margin-bottom: 8px;
    padding-left: 0;
}

.plano-bonus {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(123, 77, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--roxo-principal);
}

.plano-bonus p {
    margin: 0;
    font-size: 0.9rem;
}

.plano .btn {
    width: 100%;
    margin-top: auto;
}

/* TABELA COMPARATIVA */
.comparativo-tabela {
    margin-top: 80px;
}

.comparativo-tabela h3 {
    margin-bottom: 30px;
    text-align: center;
}

.tabela-wrapper {
    overflow-x: auto;
}

.tabela {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

.tabela thead {
    background: rgba(123, 77, 255, 0.1);
    border-bottom: 1px solid rgba(123, 77, 255, 0.2);
}

.tabela th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    color: var(--branco-premium);
}

.tabela td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(123, 77, 255, 0.1);
    color: var(--cinza-tech);
}

.tabela tbody tr:hover {
    background: rgba(123, 77, 255, 0.05);
}

.tabela strong {
    color: var(--branco-premium);
}

/* FUNDADORAS */
.fundadoras {
    background: rgba(123, 77, 255, 0.02);
    border-top: 1px solid rgba(123, 77, 255, 0.1);
}

.fundadoras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.fundadora-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 77, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.fundadora-card:hover {
    border-color: var(--roxo-principal);
    box-shadow: 0 0 40px rgba(123, 77, 255, 0.2);
    transform: translateY(-5px);
}

.fundadora-imagem {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(123, 77, 255, 0.1), rgba(74, 31, 209, 0.1));
}

.fundadora-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.fundadora-card:hover .fundadora-imagem img {
    transform: scale(1.05);
}

.fundadora-info {
    padding: 35px;
}

.fundadora-info h3 {
    margin-bottom: 8px;
    color: var(--branco-premium);
}

.fundadora-cargo {
    color: var(--roxo-glow);
    font-weight: 600;
    margin-bottom: 15px !important;
}

.fundadora-bio {
    font-size: 0.95rem;
    line-height: 1.8;
}

.fundadora-insta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 8px 16px;
    border: 1px solid rgba(123, 77, 255, 0.3);
    border-radius: 30px;
    color: var(--roxo-glow);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.fundadora-insta svg {
    width: 18px;
    height: 18px;
}

.fundadora-insta:hover {
    background: rgba(123, 77, 255, 0.12);
    border-color: var(--roxo-principal);
    box-shadow: 0 0 20px rgba(123, 77, 255, 0.2);
}

.fundadoras-proposito {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(123, 77, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(123, 77, 255, 0.2);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* PRÓXIMOS PASSOS */
.proximos-passos {
    background: linear-gradient(180deg, transparent, rgba(123, 77, 255, 0.03));
}

.passos-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.passo {
    text-align: center;
    position: relative;
}

.passo-numero {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--roxo-principal), var(--roxo-glow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px rgba(123, 77, 255, 0.3);
}

.passo h3 {
    margin-bottom: 15px;
    color: var(--branco-premium);
}

.passo p {
    font-size: 0.95rem;
}

/* CTA FINAL */
.cta-final {
    background: linear-gradient(135deg, rgba(123, 77, 255, 0.1), rgba(74, 31, 209, 0.1));
    border-top: 1px solid rgba(123, 77, 255, 0.2);
    border-bottom: 1px solid rgba(123, 77, 255, 0.2);
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--branco-premium), var(--roxo-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
.footer {
    background: rgba(5, 5, 5, 0.5);
    border-top: 1px solid rgba(123, 77, 255, 0.1);
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: var(--cinza-tech);
}

.footer-insta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 18px;
    border: 1px solid rgba(123, 77, 255, 0.3);
    border-radius: 30px;
    color: var(--roxo-glow);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-insta svg {
    width: 18px;
    height: 18px;
}

.footer-insta:hover {
    background: rgba(123, 77, 255, 0.12);
    border-color: var(--roxo-principal);
    box-shadow: 0 0 20px rgba(123, 77, 255, 0.2);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .nav {
        gap: 20px;
        font-size: 0.9rem;
    }

    .diagnostico-grid {
        grid-template-columns: 1fr;
    }

    .problema-item {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }

    .passo-numero {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .comparativo-wrapper {
        grid-template-columns: 1fr;
    }

    .plano-destaque {
        transform: scale(1);
    }

    .fundadoras-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fundadora-imagem {
        height: 300px;
    }

    .tabela {
        font-size: 0.85rem;
    }

    .tabela th,
    .tabela td {
        padding: 12px;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

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

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.95rem;
    }

    .header {
        padding: 15px 0;
    }

    .logo img {
        height: 64px;
    }

    .nav {
        gap: 15px;
        font-size: 0.8rem;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .diagnostico-card {
        padding: 25px 20px;
    }

    .problema-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        padding: 20px;
    }

    .problema-numero {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .pilar {
        padding: 25px;
    }

    .modulo-card {
        padding: 20px;
    }

    .plano {
        padding: 25px 20px;
    }

    .preco-valor {
        font-size: 2rem;
    }

    .passo-numero {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .passo h3 {
        font-size: 1rem;
    }

    .fundadora-imagem {
        height: 250px;
    }

    .fundadora-info {
        padding: 20px;
    }

    .fundadoras-proposito {
        padding: 25px;
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
}
