@charset "UTF-8";

:root{
    --cor-preto: #0a0a0a;
    --cor-preto-texto: #64748b;
    --cor-branco: #ffffff;
    --cor-principal: #6366f1;
    --cor-secundaria: #8b5cf6;
    --cor-accent: #06b6d4;
    --cor-sombra: rgba(0, 0, 0, 0.1);
    --cor-fundo: #f8fafc;
    --cor-fundo-escuro: #1e293b;
    --cor-gradiente-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --cor-gradiente-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --cor-gradiente-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);

    --fonte: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    --fonte-display: 'Poppins', 'Inter', sans-serif;
}

*{
    box-sizing: border-box;
}

body{
    width: 100vw;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    font-family: var(--fonte);
    color: var(--cor-preto);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.background{
    background: url('../assets/fundo.jpg') no-repeat;
    background-size: cover;
}

.cabecalho{
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem 2rem;
    border-radius: 24px;
    margin: 2rem auto;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 1rem;
    z-index: 1000;
}

.cabecalho__logo{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--fonte-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cor-preto);
}

.cabecalho img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.cabecalho__menu{
    display: flex;
    align-items: center;
    gap: 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.cabecalho__menu-item{
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.cabecalho__menu-item::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cor-gradiente-1);
    transition: width 0.3s ease;
}

.cabecalho__menu-item:hover::after{
    width: 100%;
}

.cabecalho__menu-item:hover{
    color: var(--cor-principal);
    transform: translateY(-2px);
}

.cabecalho__login {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--cor-principal);
    background: transparent;
    color: var(--cor-principal);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-right: 1rem;
}

.cabecalho__login:hover {
    background: var(--cor-principal);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.cabecalho__botao, .banner__texto > button, .card button {
    padding: 0.875rem 2rem;
    border-radius: 16px;
    border: none;
    background: var(--cor-gradiente-1);
    color: var(--cor-branco);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cabecalho__botao::before, .banner__texto > button::before, .card button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cabecalho__botao:hover::before, .banner__texto > button:hover::before, .card button:hover::before {
    left: 100%;
}

.cabecalho__botao:hover, .banner__texto > button:hover, .card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

/* Ocultar menu e botões em mobile, manter apenas logo */
@media screen and (max-width: 950px) {
    .cabecalho__menu{
        display: none !important;
    }
    
    .cabecalho__navegacao{
        display: none !important;
    }
    
    .cabecalho__login {
        display: none !important;
    }
    
    .cabecalho__botao {
        display: none !important;
    }
    
    .cabecalho__acoes{
        display: none !important;
    }
    
    .cabecalho {
        justify-content: center;
    }
}

.principal{
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 1200px;
}

.principal__banner{
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem 6rem;
    min-height: 80vh;
    gap: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.principal__banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    z-index: -1;
}

.banner__tags > ul{
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.banner__tags > ul > li{
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;  
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--cor-preto-texto);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.banner__tags > ul > li:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
    border-color: var(--cor-principal);
}

.banner__tags .material-symbols-outlined {
    font-size: 1.2rem;
    color: var(--cor-principal);
}

.banner__titulo{
    font-family: var(--fonte-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    background: var(--cor-gradiente-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.banner__texto {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    font-size: 1.2rem;
    color: var(--cor-preto-texto);
    max-width: 800px;
    margin: 0 auto;
}

.banner__texto p {
    line-height: 1.7;
    font-weight: 400;
}

.banner__texto strong {
    font-weight: bolder;
}

.banner__clientes{
    color: var(--cor-preto-texto);
}

.principal__banner hr{
    margin-top: 5rem;
    height: 2px;
    width: 400px;
}

.secao{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    margin: 4rem 0;
}

/* Otimizações da GIO */
.otimizacoes__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.otimizacoes__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cor-gradiente-1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 1.5rem 0;
}

.otimizacoes__badge span {
    font-size: 1.1rem;
}


.otimizacoes__texto {
    font-size: 1.125rem;
    color: var(--cor-preto-texto);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.otimizacoes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.otimizacao-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.otimizacao-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.otimizacao-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.otimizacao-icon span {
    font-size: 1.5rem;
    color: white;
}

.otimizacao-content {
    flex: 1;
}

.otimizacao-content h3 {
    font-family: var(--fonte-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin-bottom: 0.75rem;
}

.otimizacao-content p {
    color: var(--cor-preto-texto);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.otimizacao-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cor-preto-texto);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e5e7eb;
}

.status-dot.active {
    background: #10B981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.otimizacoes__stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--fonte-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cor-principal);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cor-preto-texto);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Seção Gestor - Visual Remodelado */
.principal__gestor {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.principal__gestor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    opacity: 1;
}

.principal__gestor::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%236366f1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.gestor__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.gestor__hero {
    text-align: center;
    margin-bottom: 5rem;
}

.gestor__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cor-gradiente-1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.gestor__badge span {
    font-size: 1.1rem;
}

.gestor__titulo {
    font-family: var(--fonte-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--cor-preto);
    margin-bottom: 1rem;
}

.gestor__subtitulo {
    font-size: 1.2rem;
    color: var(--cor-preto-texto);
    font-weight: 500;
    margin-bottom: 2rem;
}

.gestor__texto {
    font-size: 1.2rem;
    color: var(--cor-preto-texto);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.gestor__comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.comparison__item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.comparison__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gestor-humano:hover::before {
    opacity: 0.3;
}

.gio-ai:hover::before {
    opacity: 1;
}

.gio-ai {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
}

.comparison__item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.comparison__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.comparison__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison__icon span {
    font-size: 1.5rem;
    color: var(--cor-principal);
}

.comparison__header h3 {
    font-family: var(--fonte-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin: 0;
}

.comparison__price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cor-preto);
    margin-bottom: 1.5rem;
    text-align: center;
}

.gestor-humano .comparison__price {
    color: #dc2626;
}

.gio-ai .comparison__price {
    color: #059669;
}

.comparison__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--cor-preto-texto);
}

.feature-negative {
    color: #dc2626 !important;
}

.feature-positive {
    color: #059669 !important;
}

.comparison__features li span {
    font-size: 1.1rem;
}

.comparison__vs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs__circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cor-gradiente-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
}

.gestor__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.stat-icon span {
    font-size: 1.25rem;
    color: var(--cor-principal);
}

.stat-number {
    font-family: var(--fonte-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cor-principal);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--cor-preto-texto);
    font-weight: 500;
}

.gestor__cta {
    text-align: center;
}

.gestor__cta .botao-primario {
    background: var(--cor-gradiente-1);
    border: none;
    color: white;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.gestor__cta .botao-primario:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
}

.cta__note {
    margin-top: 1rem;
    color: var(--cor-preto-texto);
    font-size: 0.95rem;
}

/* Seção Integração Fácil */
.principal__integracao-facil {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.principal__integracao-facil::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    opacity: 1;
}

.integracao-facil__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.integracao-facil__header {
    text-align: center;
    margin-bottom: 4rem;
}

.integracao-facil__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cor-gradiente-1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.integracao-facil__badge span {
    font-size: 1.1rem;
}

.integracao-facil__texto {
    font-size: 1.2rem;
    color: var(--cor-preto-texto);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.integracao-facil__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--cor-gradiente-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon span {
    font-size: 2rem;
    color: var(--cor-principal);
}

.step-content h3 {
    font-family: var(--fonte-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1rem;
    color: var(--cor-preto-texto);
    line-height: 1.6;
    margin: 0;
}

.integracao-facil__cta {
    text-align: center;
    margin-top: 4rem;
}

.integracao-facil__cta .botao-primario {
    background: var(--cor-gradiente-1);
    border: none;
    color: white;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.integracao-facil__cta .botao-primario:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
}

.integracao-facil__cta .cta__note {
    margin-top: 1rem;
    color: var(--cor-preto-texto);
    font-size: 0.95rem;
}

/* Logos GIO */
.cta__logo, .otimizacoes__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logo-gio {
    height: 60px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logo-gio:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-gio-fundo {
    height: 80px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.logo-gio-fundo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Logos Header e Footer */
.logo-gio-header {
    height: 40px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logo-gio-header:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-gio-footer {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.logo-gio-footer:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Logo na comparação */
.comparison__logo {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0;
}

.logo-gio-comparison {
    height: 30px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logo-gio-comparison:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Seção Teste Gratuito - Layout Duas Colunas */
.principal__teste-gratuito {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.principal__teste-gratuito::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    opacity: 1;
}

.teste-gratuito__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.teste-gratuito__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.teste-gratuito__left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.teste-gratuito__header {
    text-align: left;
}

.teste-gratuito__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cor-gradiente-1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.teste-gratuito__badge span {
    font-size: 1.1rem;
}

.teste-gratuito__titulo {
    font-family: var(--fonte-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--cor-preto);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.teste-gratuito__texto {
    font-size: 1.1rem;
    color: var(--cor-preto-texto);
    line-height: 1.6;
    margin: 0;
}

.teste-gratuito__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 14px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon span {
    font-size: 1.2rem;
    color: var(--cor-principal);
}

.feature-content h3 {
    font-family: var(--fonte-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin-bottom: 0.4rem;
}

.feature-content p {
    font-size: 0.85rem;
    color: var(--cor-preto-texto);
    line-height: 1.4;
    margin: 0;
}

.teste-gratuito__limitations {
    margin-top: 1rem;
}

.limitation-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 193, 7, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.limitation-item span {
    font-size: 1.25rem;
    color: #f59e0b;
}

.limitation-item p {
    font-size: 0.9rem;
    color: #92400e;
    font-weight: 500;
    margin: 0;
}

.teste-gratuito__right {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

.teste-gratuito__cta-card {
    background: white;
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 450px;
    width: 100%;
}

.cta-header h3 {
    font-family: var(--fonte-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cor-preto);
    margin-bottom: 0.75rem;
}

.cta-header p {
    font-size: 1.1rem;
    color: var(--cor-preto-texto);
    margin-bottom: 2.5rem;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--cor-preto-texto);
}

.benefit-item span:first-child {
    color: #10b981;
    font-size: 1.2rem;
}

.teste-gratuito__cta-card .botao-primario {
    background: var(--cor-gradiente-1);
    border: none;
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
}

.teste-gratuito__cta-card .botao-primario:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
}

.subtitulo{
    font-family: var(--fonte-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 2rem 0;
    color: var(--cor-preto);
    line-height: 1.2;
}

.texto{
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--cor-preto-texto);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.principal__beneficios{
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8),
        rgba(99, 102, 241, 0.1)
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    margin: 4rem auto;
    max-width: 1200px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.principal__beneficios::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.beneficios__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.beneficios__header span {
    font-size: 1.5rem;
    color: #f59e0b;
}

.beneficios__header p {
    font-family: var(--fonte-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cor-preto-texto);
    margin: 0;
}

.beneficios__texto {
    width: 100%;
    max-width: 800px;
}

.beneficios__texto > p{
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.beneficios__texto h2 {
    margin: 0 0 1rem 0;
}

.subtitulo span{
    color: rgba(0, 0, 0, 0.438);
}

.beneficios__lista {
    width: 100%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.beneficio__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.beneficio__item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.beneficio__item h3 {
    font-family: var(--fonte-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--cor-preto);
}

.beneficio__item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--cor-preto-texto);
}

.beneficio__item span {
    background: var(--cor-gradiente-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    flex-shrink: 0;
}

/* Seção de Métricas */
.principal__metricas {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin: 6rem 0;
    padding: 4rem 0;
}

.metricas__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.metricas__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.metricas__header span {
    font-size: 1.5rem;
    color: #10b981;
}

.metricas__header p {
    font-family: var(--fonte-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cor-preto-texto);
    margin: 0;
}

.metricas__titulo {
    font-family: var(--fonte-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--cor-preto);
    line-height: 1.2;
    margin: 0;
}

.metricas__texto {
    font-size: 1.1rem;
    color: var(--cor-preto-texto);
    line-height: 1.6;
    margin: 0;
}

.metricas__botoes {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.botao-primario {
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    border: none;
    background: var(--cor-gradiente-1);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.botao-primario:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.botao-secundario {
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--cor-preto-texto);
    background: transparent;
    color: var(--cor-preto-texto);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.botao-secundario:hover {
    background: var(--cor-preto-texto);
    color: white;
    transform: translateY(-2px);
}

/* Gráfico */
.metricas__grafico {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.grafico__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.grafico__header h3 {
    font-family: var(--fonte-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cor-preto-texto);
    margin: 0;
}

.grafico__valor {
    font-family: var(--fonte-display);
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin: 0;
}

.grafico__barras {
    display: flex;
    align-items: end;
    gap: 0.75rem;
    height: 200px;
    position: relative;
}

.barra {
    height: 85%;  
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem; 
    justify-content: flex-end;
}

.barra__preenchimento {
    width: 100%;
    background: #e2e8f0;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    /* min-height: 20px; */
    height: var(--barra-height, 0%);;
    flex-shrink: 0;
    /* align-self: flex-end; */
    position: relative;
    display: block;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: none;
    transition: height 1s ease; 
}

.barra__destaque {
    background: var(--cor-gradiente-1);
    position: relative;
}

.barra__destaque::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--cor-gradiente-1);
    border-radius: 6px 6px 0 0;
    z-index: -1;
    opacity: 0.3;
}

.barra__label {
    font-size: 0.8rem;
    color: var(--cor-preto-texto);
    font-weight: 500;
}

.barra__implementacao {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cor-gradiente-1);
    color: var(--cor-branco);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    animation: pulse 2s infinite;
}

.grafico__linha-referencia {
    position: absolute;
    top: 21%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #6366f1 20%, #6366f1 80%, transparent 100%);
    border-style: dashed;
    border-color: #6366f1;
    border-width: 0 0 2px 0;
    opacity: 0.6;
}







.integracao__texto {
    font-size: 1.2rem;
    color: var(--cor-preto-texto);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Diagrama de Integração */
.integracao__diagrama {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 4rem;
    height: 450px;

}

.integracao__central {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.integracao__logo {
    width: 80px;
    height: 80px;
    background: var(--cor-preto);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.integracao__logo img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    filter: brightness(0) invert(1);
}

.integracao__plataformas {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 1000px;
    height: 600px;
}

.plataforma {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plataforma-1 { top: 11%; left: 10%; }
.plataforma-2 { top: 32%; left: 20%; }
.plataforma-3 { top: 51%; left: 10%; }
.plataforma-4 { top: 11%; right: 10%; }
.plataforma-5 { top: 32%; right: 20%; }
.plataforma-6 { top: 51%; right: 10%; }

.plataforma__icone {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.plataforma__icone span {
    font-size: 1.8rem;
    color: var(--cor-preto);
}

/* Conexões SVG */
.integracao__conexoes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.conexao {
    stroke: #64748b;
    stroke-dasharray: 4, 4;
    opacity: 0.7;
}

/* Features de Integração */
.integracao__features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.feature__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature__item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature__item span {
    font-size: 1rem;
    color: var(--cor-preto);
}

.feature__item p {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--cor-preto);
    margin: 0;
}

.feature__separator {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #64748b, transparent);
    opacity: 0.5;
}

/* Seção de Setup Instantâneo */
.principal__setup {
    background: var(--cor-fundo);
    margin: 6rem 0;
    padding: 4rem 0;
}

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

.setup__subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cor-preto-texto);
    margin: 0 0 1rem 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.setup__titulo {
    font-family: var(--fonte-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--cor-preto);
    margin: 0;
    line-height: 1.2;
}

.setup__processo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.setup__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.setup__icone {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--cor-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.setup__icone:hover {
    background: var(--cor-principal);
    transform: translateY(-2px);
}

.setup__icone:hover span {
    color: var(--cor-branco);
}

.setup__icone span {
    font-size: 1.8rem;
    color: var(--cor-principal);
    transition: color 0.3s ease;
}

.setup__badge {
    background: var(--cor-principal);
    color: var(--cor-branco);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    min-width: 80px;
}

.setup__texto {
    font-size: 1rem;
    color: var(--cor-preto);
    margin: 0;
    font-weight: 500;
}

.setup__separator {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #64748b, transparent);
    opacity: 0.5;
    flex-shrink: 0;
    font-weight: 400;
}

/* Animações */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.como-funciona__div{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    margin-top: 3rem;
}

.como-funciona__item{
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.como-funciona__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--cor-gradiente-2);
}

.como-funciona__div img{
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.funcionalidade,
.como-funciona__item,
.banner__tags > ul > li, .card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3), 
        rgba(220, 230, 255, 0.555)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Header dos Planos */
.planos__header {
    text-align: center;
    margin-bottom: 3rem;
}

.planos__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.planos__badge span {
    font-size: 1.2rem;
    color: var(--cor-principal);
}

.planos__badge p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cor-preto-texto);
    margin: 0;
}

.planos__toggle {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.toggle__container {
    display: flex;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 0.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.toggle__option {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    font-weight: 500;
    color: var(--cor-preto-texto);
    min-width: 100px;
    justify-content: center;
}

.toggle__option.toggle__active {
    background: var(--cor-fundo-escuro);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.toggle__badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.planos__cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin-top: 3rem;
}

.card{
    padding: 2.5rem;
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--cor-gradiente-3);
}

.card__header{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card__header > span{
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cor-gradiente-3);
    padding: 1rem;
    border-radius: 16px;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    color: white;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.card__header > div{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.header__plano{
   font-size: 0.9rem;
   color: var(--cor-preto-texto);
   font-weight: 500;
}

.card__header > div strong{
    font-family: var(--fonte-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--cor-preto);
}

.preco-destaque {
    font-family: var(--fonte-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--cor-preto);
    margin: 0;
    line-height: 1;
}

.preco-destaque strong {
    font-size: 2rem;
}

.preco-destaque strong::after {
    content: "/mês";
    font-size: 1rem;
    font-weight: 500;
    color: var(--cor-preto-texto);
}

.preco-total {
    font-size: 0.9rem;
    color: var(--cor-preto-texto);
    margin: 0.25rem 0 0 0;
    font-weight: 500;
}

/* Estilo específico para o plano gratuito */
.card-gratuito .preco-mensal strong,
.card-gratuito .preco-anual strong {
    color: var(--cor-preto);
    font-size: 1.8rem;
}

.card button{
    width: 100%;
    padding: 1rem 0;
    border-radius: 16px;
    margin-top: 1.5rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    align-self: flex-end;
}

.card__main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
}

.card__main h3{
    font-family: var(--fonte-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--cor-preto);
    margin-bottom: 0.5rem;
}

.card__main ul{
    list-style: none;
    padding: 0;
    color: var(--cor-preto-texto);
    font-size: 1rem;
    line-height: 1.6;
}

.card__main ul > li{
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.card__main ul > li::before{
    content: "✓";
    color: var(--cor-principal);
    font-weight: bold;
    margin-right: 12px;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.25rem;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.rodape {
    background: linear-gradient(
        135deg,
        rgba(30, 41, 59, 0.95),
        rgba(51, 65, 85, 0.95)
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
    color: white;
}

.rodape__conteudo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.rodape__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rodape__logo img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.rodape__logo h2 {
    font-family: var(--fonte-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.rodape__redes {
    display: flex;
    gap: 1rem;
}

.rodape__redes a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rodape__redes a:hover {
    background: var(--cor-gradiente-1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.rodape__copy {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

a{
    text-decoration: none;
    color: var(--cor-preto);
    transition: all 0.3s ease;
}

a:hover{
    color: var(--cor-principal);
}

/* Animações extras */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.funcionalidade, .como-funciona__item, .card {
    animation: fadeInUp 0.6s ease-out;
}

.banner__tags > ul > li {
    animation: float 3s ease-in-out infinite;
}

.banner__tags > ul > li:nth-child(2) {
    animation-delay: 0.5s;
}

.banner__tags > ul > li:nth-child(3) {
    animation-delay: 1s;
}

.banner__tags > ul > li:nth-child(4) {
    animation-delay: 1.5s;
}

.banner__tags > ul > li:nth-child(5) {
    animation-delay: 2s;
}

/* Seção de Recursos Principais */
.principal__recursos-principais {
    background: var(--cor-fundo);
    margin: 6rem 0;
    padding: 4rem 0;
}

.recursos-principais__header {
    text-align: center;
    margin-bottom: 4rem;
}

.recursos-principais__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.recursos-principais__badge span {
    font-size: 1.2rem;
    color: var(--cor-principal);
}

.recursos-principais__badge p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cor-preto-texto);
    margin: 0;
}

.recursos-principais__titulo {
    font-family: var(--fonte-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--cor-preto);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.recursos-principais__texto {
    font-size: 1.2rem;
    color: var(--cor-preto-texto);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.recursos-principais__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.recursos-principais__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Seção de Preview do Dashboard */
.principal__dashboard-preview {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin: 6rem 0;
    padding: 4rem 0;
}

.dashboard-preview__header {
    text-align: center;
    margin-bottom: 4rem;
}

.dashboard-preview__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dashboard-preview__badge span {
    font-size: 1.2rem;
    color: var(--cor-principal);
}

.dashboard-preview__badge p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cor-preto-texto);
    margin: 0;
}

.dashboard-preview__titulo {
    font-family: var(--fonte-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--cor-preto);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.dashboard-preview__texto {
    font-size: 1.2rem;
    color: var(--cor-preto-texto);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Tabs de Navegação */
.dashboard-preview__tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(99, 102, 241, 0.2);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    font-weight: 600;
    color: var(--cor-preto-texto);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tab-button:hover {
    border-color: var(--cor-principal);
    background: rgba(99, 102, 241, 0.05);
    transform: translateY(-2px);
}

.tab-button.active {
    background: var(--cor-gradiente-1);
    border-color: var(--cor-principal);
    color: white;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.tab-button span {
    font-size: 1.1rem;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.dashboard-preview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dashboard-preview__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--cor-gradiente-1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    background: var(--cor-gradiente-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.feature-card__icon span {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-family: var(--fonte-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--cor-preto-texto);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-stats {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-stats .stat {
    background: rgba(99, 102, 241, 0.1);
    color: var(--cor-principal);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* Mockup do Dashboard */
.dashboard-preview__mockup {
    position: relative;
}

.mockup-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mockup-header {
    background: #f8fafc;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mockup-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.mockup-logo span {
    font-family: var(--fonte-display);
    font-weight: 600;
    color: var(--cor-preto);
    font-size: 1.1rem;
}

.mockup-actions {
    display: flex;
    gap: 0.5rem;
}

.mockup-button {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cor-preto-texto);
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mockup-button.active {
    background: var(--cor-principal);
    color: white;
}

.mockup-user {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--cor-gradiente-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.user-avatar span {
    color: white;
    font-size: 1.2rem;
}

.mockup-content {
    padding: 2rem;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.stat-card.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-color: rgba(99, 102, 241, 0.3);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--cor-gradiente-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon span {
    color: white;
    font-size: 1.5rem;
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-family: var(--fonte-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cor-principal);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--cor-preto-texto);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.stat-change {
    font-size: 0.8rem;
    font-weight: 600;
}

.stat-change.positive {
    color: #10b981;
}

.stat-change.neutral {
    color: var(--cor-preto-texto);
}

.mockup-chart {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-header h4 {
    font-family: var(--fonte-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin: 0;
}

.chart-controls {
    display: flex;
    gap: 0.5rem;
}

.chart-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--cor-preto-texto);
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-btn.active {
    background: var(--cor-principal);
    color: white;
    border-color: var(--cor-principal);
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.75rem;
    height: 120px;
    justify-content: center;
    position: relative;
}

.chart-bar {
    width: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    transform: translateY(-2px);
}

.bar-fill {
    width: 100%;
    background: #e2e8f0;
    border-radius: 4px 4px 0 0;
    transition: all 0.8s ease;
    height: 0;
}

.chart-bar.active .bar-fill {
    background: var(--cor-gradiente-1);
}

.bar-label {
    font-size: 0.8rem;
    color: var(--cor-preto-texto);
    font-weight: 500;
    margin-top: 0.5rem;
}

.bar-value {
    position: absolute;
    top: -25px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--cor-principal);
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-bar:hover .bar-value {
    opacity: 1;
}

/* AI Insights */
.mockup-ai-insights {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ai-header span {
    font-size: 1.5rem;
    color: var(--cor-principal);
}

.ai-header h4 {
    font-family: var(--fonte-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin: 0;
    flex: 1;
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--cor-preto-texto);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.ai-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.insight-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.insight-item span {
    font-size: 1.2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.insight-item p {
    font-size: 0.9rem;
    color: var(--cor-preto-texto);
    line-height: 1.5;
    margin: 0;
}

/* Outras Abas */
.campaigns-preview {
    display: grid;
    gap: 2rem;
}

/* Otimizações Preview */
.optimizations-preview {
    margin-top: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.optimizations-header {
    text-align: center;
    margin-bottom: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(168, 85, 247, 0.02));
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.optimizations-header h3 {
    font-family: var(--fonte-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin: 0 0 0.5rem 0;
}

.optimizations-header p {
    font-size: 0.95rem;
    color: var(--cor-preto-texto);
    margin: 0;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.optimizations-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-period {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-period:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: var(--fonte-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--cor-preto-texto);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.optimizations-details h4 {
    font-family: var(--fonte-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin: 0 0 1rem 0;
}

.optimizations-explanation {
    font-size: 0.95rem;
    color: var(--cor-preto-texto);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 8px;
    border-left: 4px solid #8b5cf6;
}

.optimization-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.optimization-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.optimization-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.opt-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.opt-icon span {
    color: white;
    font-size: 1.5rem;
}

.opt-content {
    flex: 1;
}

.opt-content h5 {
    font-family: var(--fonte-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin: 0 0 0.25rem 0;
}

.opt-content p {
    font-size: 0.9rem;
    color: var(--cor-preto-texto);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.opt-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.opt-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.opt-tag.update {
    background: #dbeafe;
    color: #1e40af;
}

.opt-tag.create {
    background: #dcfce7;
    color: #166534;
}

.opt-tag.google {
    background: #f3f4f6;
    color: var(--cor-preto-texto);
}

.opt-time {
    font-size: 0.85rem;
    color: var(--cor-preto-texto);
    font-weight: 500;
    flex-shrink: 0;
}

/* Visão Geral Preview */
.overview-preview {
    margin-top: 0;
}

.overview-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(168, 85, 247, 0.02));
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    text-align: center;
}

.overview-title h3 {
    font-family: var(--fonte-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin: 0 0 0.5rem 0;
}

.overview-title p {
    font-size: 0.95rem;
    color: var(--cor-preto-texto);
    margin: 0;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.overview-info {
    width: 32px;
    height: 32px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.overview-info:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.1);
}

.overview-info span {
    color: #8b5cf6;
    font-size: 1.2rem;
    font-weight: 600;
}

.overview-content {
    display: grid;
    gap: 2rem;
}

.overview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Seção de Pontuação */
.scores-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.score-section {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.main-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.score-value {
    font-family: var(--fonte-display);
    font-size: 3rem;
    font-weight: 700;
    color: #8b5cf6;
    line-height: 1;
}

.score-total {
    font-family: var(--fonte-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--cor-preto-texto);
    margin-left: 0.25rem;
}

.score-description p {
    font-size: 0.95rem;
    color: var(--cor-preto-texto);
    line-height: 1.6;
    margin: 0;
}

/* Breakdown de Pontuações */
.score-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.score-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.score-label {
    font-size: 0.9rem;
    color: var(--cor-preto-texto);
    min-width: 80px;
    text-align: left;
}

.score-bar {
    flex: 1;
    height: 8px;
    background: #f3f4f6;
    border-radius: 4px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.score-number {
    font-family: var(--fonte-display);
    font-size: 1rem;
    font-weight: 600;
    color: #8b5cf6;
    min-width: 30px;
    text-align: right;
}

/* Ações da GIO */
.gio-actions h4 {
    font-family: var(--fonte-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin: 0 0 1.5rem 0;
}

.action-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.action-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.action-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.action-icon span {
    color: white;
    font-size: 1.5rem;
}

.action-content {
    flex: 1;
}

.action-content h5 {
    font-family: var(--fonte-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin: 0 0 0.25rem 0;
}

.action-content p {
    font-size: 0.9rem;
    color: var(--cor-preto-texto);
    margin: 0;
    line-height: 1.4;
}

.action-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e5e7eb;
}

.status-dot.active {
    background: #10b981;
}

.action-status span:last-child {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cor-preto-texto);
}

/* Header da Aba de Campanhas */
.campaigns-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    gap: 2rem;
}

.campaigns-intro h3 {
    font-family: var(--fonte-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin: 0 0 0.75rem 0;
}

.campaigns-intro p {
    font-size: 1rem;
    color: var(--cor-preto-texto);
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.campaign-actions {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.create-campaign-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: var(--cor-gradiente-1);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.create-campaign-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.project-card,
.campaign-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.project-card:hover,
.campaign-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Melhorias para Campanhas */
.campaign-item {
    position: relative;
    overflow: hidden;
}

.campaign-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.campaign-info h4 {
    font-family: var(--fonte-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin: 0 0 0.5rem 0;
}

.campaign-info p {
    font-size: 0.9rem;
    color: var(--cor-preto-texto);
    margin: 0 0 0.75rem 0;
}

.campaign-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(99, 102, 241, 0.1);
    color: var(--cor-principal);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* Toggle Switch para Campanhas */
.campaign-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--cor-principal);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--cor-preto-texto);
    text-align: center;
}

.campaign-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-family: var(--fonte-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cor-principal);
    margin-bottom: 0.25rem;
    display: block;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--cor-preto-texto);
    font-weight: 500;
}

.campaign-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
    margin-left: auto;
}

.campaign-status.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.campaign-status.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

/* Card de Criação de Nova Campanha */
.campaign-item.create-new {
    border: 2px dashed rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02), rgba(139, 92, 246, 0.02));
}

.campaign-item.create-new:hover {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(168, 85, 247, 0.05));
}

.create-campaign-card {
    padding: 2rem;
}

.create-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.create-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    flex-shrink: 0;
}

.create-icon span {
    color: white;
    font-size: 2rem;
}

.create-text h4 {
    font-family: var(--fonte-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin: 0 0 0.5rem 0;
}

.create-text p {
    font-size: 0.95rem;
    color: var(--cor-preto-texto);
    margin: 0;
    line-height: 1.5;
}

/* Passos de Criação */
.creation-steps {
    margin-bottom: 1.5rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.step-item:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.1));
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.2);
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.step-content {
    flex: 1;
    text-align: center;
}

.step-content h5 {
    font-family: var(--fonte-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin: 0 0 0.25rem 0;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--cor-preto-texto);
    margin: 0;
    line-height: 1.4;
}


/* Tempo de Criação */
.creation-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.creation-time span:first-child {
    color: #10b981;
    font-size: 1.1rem;
}

.creation-time span:last-child {
    font-size: 0.85rem;
    font-weight: 600;
    color: #10b981;
}

.project-header,
.campaign-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.project-icon {
    width: 50px;
    height: 50px;
    background: var(--cor-gradiente-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon span {
    color: white;
    font-size: 1.5rem;
}

.project-info h3,
.campaign-info h4 {
    font-family: var(--fonte-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin: 0 0 0.25rem 0;
}

.project-info p,
.campaign-info p {
    font-size: 0.9rem;
    color: var(--cor-preto-texto);
    margin: 0;
}

.project-status,
.campaign-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: auto;
}

.project-status.active,
.campaign-status.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.project-status:not(.active),
.campaign-status.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.project-stat {
    text-align: center;
}

.project-stat .stat-value {
    font-family: var(--fonte-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cor-principal);
    margin-bottom: 0.25rem;
}

.project-stat .stat-label {
    font-size: 0.8rem;
    color: var(--cor-preto-texto);
    font-weight: 500;
}

.campaign-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.campaign-metrics .metric {
    background: rgba(99, 102, 241, 0.1);
    color: var(--cor-principal);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.analytics-chart {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.analytics-chart h4 {
    font-family: var(--fonte-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.chart-line {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 12px;
    padding: 1rem;
}

.line-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--cor-principal);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.line-point.active {
    background: var(--cor-gradiente-1);
    transform: scale(1.2);
}

.analytics-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    font-size: 2rem;
}

.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-family: var(--fonte-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cor-principal);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--cor-preto-texto);
    font-weight: 500;
}




/* Seção de Recursos Avançados */
.principal__recursos-avancados {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.principal__recursos-avancados::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    opacity: 1;
}

.recursos-avancados__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.recursos-avancados__header {
    text-align: center;
    margin-bottom: 4rem;
}

.recursos-avancados__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cor-gradiente-1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.recursos-avancados__badge span {
    font-size: 1.1rem;
}

.recursos-avancados__texto {
    font-size: 1.2rem;
    color: var(--cor-preto-texto);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.recursos-avancados__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.recurso-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.recurso-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.recurso-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.recurso-icon span {
    font-size: 1.5rem;
    color: var(--cor-principal);
}

.recurso-item h3 {
    font-family: var(--fonte-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cor-preto);
    margin-bottom: 1rem;
}

.recurso-item p {
    font-size: 0.95rem;
    color: var(--cor-preto-texto);
    line-height: 1.6;
    margin: 0;
}



