@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary: #000000;
    --secondary: #333333;
    --light: #f5f5f5;
    --dark: #111111;
    --gray: #666666;
    
    /* Tamanhos de fonte padronizados */
    --fonte-xs: 0.75rem;    /* 12px */
    --fonte-sm: 0.875rem;   /* 14px */
    --fonte-base: 1rem;     /* 16px */
    --fonte-lg: 1.125rem;   /* 18px */
    --fonte-xl: 1.25rem;    /* 20px */
    --fonte-2xl: 1.5rem;    /* 24px */
    --fonte-3xl: 1.875rem;  /* 30px */
    --fonte-4xl: 2.25rem;   /* 36px */
    --fonte-5xl: 3rem;      /* 48px */
    --fonte-6xl: 3.75rem;   /* 60px */
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    list-style: none;
}

body {
    scroll-behavior: smooth;
    color: var(--dark);
    font-size: var(--fonte-base);
}

main {
    overflow-x: hidden;
}

#plataforma .cardplataforma {
    min-height: 250px;
}

.titleUni {
    font-size: var(--fonte-5xl);
    font-weight: 800;
    line-height: 2.9rem;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.btn-uni {
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 24px;
    font-size: var(--fonte-sm);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btncliente {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btncliente:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    color: white;
    background: var(--secondary);
}

/* ===== HERO MINIMALISTA ===== */

.app-content {
    display: flex;
    flex-direction: column;
    gap: 0px !important;
}

.infoHeader span {
    color: white !important;
}

.hero-moderno {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.conteudo-hero {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.grid-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

/* TEXTO PRINCIPAL */
.texto-principal {
    text-align: center;
    order: 2;
}

.titulo-destaque {
    font-size: var(--fonte-4xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.descricao-hero {
    font-size: var(--fonte-lg);
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: auto;
    margin-left: auto;
    margin-right: auto;
}

/* BOTÕES */
.container-botoes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
}

.botao-primario,
.botao-secundario {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: var(--fonte-base);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 280px;
    text-align: center;
    border: none;
    cursor: pointer;
}

.botao-primario:hover,
.botao-secundario:hover {
    transform: translateY(-2px) perspective(500px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.botao-primario {
    background: var(--primary);
    color: #fff;
}

.botao-primario:active {
    transform: scale(0.98);
}

.botao-secundario {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.botao-secundario:active {
    background: #f0f0f0;
}

/* DESTAQUES RÁPIDOS */
.destaques-rapidos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.destaque {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.numero {
    font-size: var(--fonte-2xl);
    font-weight: 700;
    color: var(--primary);
}

.texto {
    font-size: var(--fonte-sm);
    color: var(--gray);
}

/* MOCKUP CELULAR MINIMALISTA */
.visual-celular {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
}

.mockup-dispositivo {
    width: 280px;
    height: 560px;
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 10px solid var(--primary);
}

.tela-app {
    width: 100%;
    height: 100%;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
}

.headerApp {
    background: var(--primary);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 4rem 2rem 1rem 2rem;
}

.StatusBar {
    color: white;
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: -1px;
    left: 0px;
    padding: 1rem 2rem;
}

.StatusBar span {
    font-size: var(--fonte-sm);
}

.app-content {
    margin-top: 10rem;
}

.feature-card {
    background: var(--primary);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    margin: 10px;
    color: white;
}

.feature-card i {
    font-size: var(--fonte-xl);
    margin-right: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 0px;
    padding: 10px;
}

.stat-item {
    text-align: center;
    background: var(--primary);
    padding: 10px;
    border-radius: 8px;
    color: white;
}

.stat-number {
    font-size: var(--fonte-lg);
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: var(--fonte-xs);
    opacity: 0.9;
}

/* Estilos específicos para o carrossel (apenas para hero principal) */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    background-color: var(--secondary);
    transform: scale(1.2);
}

.carousel-slides {
    position: relative;
    height: 100%;
}

.carousel-slides .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.carousel-slides .slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Estilos específicos para o mockup dinâmico (apenas para hero principal) */
.mockup-dinamico {
    transition: all 0.5s ease-in-out;
}

.mockup-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tela-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
    padding: 20px;
}

.tela-slide.active {
    opacity: 1;
    transform: translateY(0);
}

/* DESKTOP */
@media (min-width: 768px) {
    .hero-moderno {
        padding: 10rem 2rem;
    }

    .grid-hero {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .texto-principal {
        text-align: left;
        order: 1;
    }

    .visual-celular {
        order: 2;
    }

    .titulo-destaque {
        font-size: var(--fonte-5xl);
    }

    .descricao-hero {
        margin-left: 0;
        margin-right: 0;
        font-size: var(--fonte-xl);
    }

    .container-botoes {
        flex-direction: row;
        align-items: flex-start;
    }

    .botao-primario,
    .botao-secundario {
        width: auto;
        min-width: 160px;
    }

    .destaques-rapidos {
        justify-content: flex-start;
    }

    .mockup-dispositivo {
        width: 320px;
        height: 640px;
    }
}

/* MOBILE PEQUENO */
@media (max-width: 360px) {
    .hero-moderno {
        padding: 1.5rem 1rem;
    }

    .titulo-destaque {
        font-size: var(--fonte-3xl);
    }

    .descricao-hero {
        font-size: var(--fonte-base);
    }

    .mockup-dispositivo {
        width: 240px;
        height: 480px;
    }

    .destaques-rapidos {
        gap: 1.5rem;
    }

    .numero {
        font-size: var(--fonte-xl);
    }
}

/* Seção Ganhos */
.bg-light {
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%) !important;
    padding: 6rem 0;
}

.ganho-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius:30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ganho-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ganho-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--fonte-2xl);
    flex-shrink: 0;
}

.ganho-content h3 {
    font-size: var(--fonte-xl);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.ganho-content p {
    color: var(--gray);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: var(--fonte-base);
}

.ganho-value {
    background: rgba(0, 0, 0, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: var(--fonte-sm);
    font-weight: 600;
    display: inline-block;
}

/* Gráfico de Ganhos */
.grafico-ganhos {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: auto;
}

.grafico-header {
    text-align: center;
    margin-bottom: 2rem;
}

.grafico-header h4 {
    font-size: var(--fonte-lg);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.grafico-header p {
    color: var(--gray);
    font-size: var(--fonte-sm);
}

.grafico-barras {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.barra-mes {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mes {
    width: 60px;
    font-size: var(--fonte-sm);
    font-weight: 600;
    color: var(--gray);
}

.barra-container {
    flex: 1;
    background: #f0f0f0;
    border-radius: 10px;
    height: 30px;
    overflow: hidden;
    position: relative;
}

.barra {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1rem;
    color: white;
    font-size: var(--fonte-xs);
    font-weight: 600;
    transition: width 1s ease-in-out;
    white-space: nowrap;
}

/* Seção Funcionalidades */
#funcionalidades {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.funcionalidade-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 0.9rem;
    padding: 1.5rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.funcionalidade-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.funcionalidade-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--fonte-lg);
    flex-shrink: 0;
}

.funcionalidade-content h3 {
    font-size: var(--fonte-lg);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.funcionalidade-content p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    font-size: var(--fonte-base);
}

/* Seção Depoimentos */
#depoimentos {
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
    padding: 6rem 0;
}

.depoimento-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.depoimento-texto {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: var(--fonte-base);
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.autor-foto {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.autor-info h4 {
    font-size: var(--fonte-base);
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.autor-info p {
    font-size: var(--fonte-sm);
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.autor-estrelas {
    color: #ffc107;
    font-size: var(--fonte-sm);
}

/* Seção Planos */
#planos {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

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

.planos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.planos-header p {
    color: var(--gray);
    font-size: var(--fonte-lg);
    max-width: 600px;
    margin: 13px auto;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plano-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.plano-popular {
    background: var(--primary);
    color: white;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: var(--fonte-sm);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.plano-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.plano-nome {
    font-size: var(--fonte-2xl);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plano-descricao {
    color: var(--gray);
    font-size: var(--fonte-base);
}

.plano-preco {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.preco-original {
    font-size: var(--fonte-base);
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.preco-atual {
    font-size: var(--fonte-4xl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.preco-periodo {
    color: var(--gray);
    font-size: var(--fonte-sm);
    margin-top: 0.5rem;
}

.mes-gratis {
    background: rgba(0, 0, 0, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: var(--fonte-sm);
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.plano-beneficios {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.beneficios-lista {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-left: 0px;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fonte-base);
    color: #555;
}

.beneficio-item i {
    color: var(--primary);
    font-size: var(--fonte-base);
}

.plano-cta {
    margin-top: auto;
}

.btn-plano {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: var(--fonte-base);
}

.btn-plano-principal {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-plano-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
    color: white;
    background: var(--secondary);
}

.btn-plano-secundario {
    background: white;
    color: var(--dark);
    border: 2px solid var(--primary);
}

.btn-plano-secundario:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: var(--dark);
}

/* Seção FAQ */
#faq {
    height: auto;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
}

#faq p {
    color: var(--gray);
    margin-bottom: 2.5rem;
    font-size: var(--fonte-lg);
    text-align: center;
}

#faq .faq-item {
    margin-bottom: 1.2rem;
    border: none;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

#faq .faq-item:hover {
    border: none;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

#faq .faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: var(--fonte-lg);
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#faq .faq-question:hover {
    background-color: transparent;
    color: var(--primary);
}

#faq .faq-question i {
    font-size: var(--fonte-xl);
    color: var(--primary);
    transition: transform 0.5s;
}

#faq .faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

#faq .faq-answer {
    padding: 0;
    background-color: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#faq .faq-answer p {
    padding: 24px 28px;
    margin: 0;
    font-size: var(--fonte-sm);
    line-height: 1.7;
    color: #545454;
    text-align: left;
}

/* Botões Flutuantes */
.btn-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fonte-3xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.btn-whatsapp:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
    color: white;
    background: var(--secondary);
}

.btn-arrow-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fonte-3xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    transform: rotate(180deg);
}

.btn-arrow-top:hover {
    transform: rotate(180deg) scale(1.12) translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
    color: white;
    background: var(--secondary);
}

/* Responsividade */
@media (min-width: 768px) {
    .grid-hero {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .texto-principal {
        text-align: left;
    }

    .destaque-hero {
        margin: 0 0 1.5rem;
    }

    .titulo-destaque {
        font-size: 5rem;
        line-height: 4.2rem;
    }

    .descricao-hero {
        margin: 1rem 0 2rem;
    }

    .container-botoes {
        justify-content: flex-start;
    }

    .estatisticas-hero {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-profissionais {
        padding: 8rem 20px 4rem;
    }

    .ganho-item,
    .funcionalidade-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .ganho-icon,
    .funcionalidade-icon {
        margin: 0 auto;
    }

    .stats-profissional {
        flex-direction: column;
        gap: 0.5rem;
    }

    .grafico-ganhos {
        margin-top: 2rem;
    }

    .planos-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .titleUni {
        font-size: var(--fonte-3xl);
        line-height: 32px;
        margin-bottom: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 462px) {
    .titulo-destaque {
        font-size: var(--fonte-3xl);
    }

    .descricao-hero {
        font-size: var(--fonte-base);
    }

    .container-botoes {
        flex-direction: column;
        align-items: center;
    }

    .botao-app {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .estatisticas-hero {
        gap: 0.5rem;
    }

    .item-estatistica {
        border-right: none;
    }

    .mockup-profissional {
        width: 220px;
        height: 440px;
    }
}