.elementor-15769 .elementor-element.elementor-element-5ecd349{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-688ec39 *//* === VARIÁVEIS DE COR === */
:root {
    --cor-primaria: rgba(5, 151, 226, 1); /* AZUL #0597E2 */
    --cor-primaria-hover: #047bba;
    --cor-primaria-gradiente-fim: #035e8f;
    --cor-secundaria: #FFD700; /* Amarelo Ouro */
    --cor-secundaria-hover: #e6c300;
    --cor-fundo-pagina: #F4F7F9;
    --cor-fundo-bloco: #FFFFFF;
    --cor-fundo-bloco-alternativo: #EAF6FD;
    --cor-texto: #2c3e50;
    --cor-texto-leve: #576574;
    --cor-texto-claro: #FFFFFF;
    --cor-cinza-borda: #DDE4E9;
    --cor-sucesso: #27ae60;
    --font-principal: 'Roboto', sans-serif;
    --font-destaque: 'Montserrat', sans-serif;

    --sombra-card: 0 10px 35px rgba(100, 120, 150, 0.1);
    --sombra-botao: 0 5px 18px rgba(5, 151, 226, 0.25);
    --sombra-botao-hover: 0 8px 25px rgba(5, 151, 226, 0.35);
    --border-radius-padrao: 12px;
}

/* === RESET BÁSICO & GERAL === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-principal);
    color: var(--cor-texto);
    line-height: 1.7;
    background-color: var(--cor-fundo-pagina);
    font-size: 1.05rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    color: var(--cor-primaria);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}
a:hover {
    text-decoration: none;
    color: var(--cor-primaria-hover);
}
.inline-link {
    font-weight: 700;
    position: relative;
    padding-bottom: 1px;
}
.inline-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--cor-secundaria);
    transition: width 0.3s ease-in-out;
}
.inline-link:hover::after {
    width: 100%;
}


/* === HEADER DA PÁGINA === */
.page-header-vendedor {
    display: none; /* ADIÇÃO AQUI: Remove completamente o header do fluxo da página */
    /* As regras abaixo não terão mais efeito visual, mas são mantidas para referência */
    /*
    background: var(--cor-fundo-pagina);
    padding: 20px 0;
    border-bottom: 1px solid var(--cor-cinza-borda);
    min-height: 50px; 
    display: flex; 
    align-items: center; 
    */
}
/*
.page-header-vendedor .container {
    display: flex;
    justify-content: center; 
    align-items: center;
    width: 100%; 
}
.logo-text-header {
    font-family: var(--font-destaque);
    font-size: 2rem; 
    font-weight: 800;
    color: var(--cor-primaria); 
    text-decoration: none;
    letter-spacing: -0.5px;
    display: inline-block; 
}
*/

/* === MAIN CONTENT (Ajuste para o topo da página) === */
.main-content {
    padding-top: 0; /* Garante que o hero comece no topo se o header estiver display:none */
    padding-bottom: 60px;
}

/* === HERO SECTION === */
.hero-vendedor {
    background: linear-gradient(145deg, var(--cor-primaria) 0%, var(--cor-primaria-gradiente-fim) 100%);
    color: var(--cor-texto-claro);
    padding: 80px 30px 60px;
    text-align: center;
    border-radius: 0 0 var(--border-radius-padrao) var(--border-radius-padrao);
    /* margin-bottom foi removido daqui, o .main-content agora controla o espaçamento superior do próximo elemento se necessário */
    box-shadow: 0 10px 40px rgba(5, 151, 226, 0.3);
}
.hero-vendedor h1 {
    font-family: var(--font-destaque);
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}
.hero-vendedor h2 {
    font-family: var(--font-principal);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    margin-bottom: 25px;
    opacity: 0.9;
}
.hero-vendedor .highlight {
    color: var(--cor-secundaria);
    font-weight: 700;
}
.hero-vendedor .subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 30px;
    opacity: 0.85;
}
.hero-vendedor .highlight-secondary {
    background-color: rgba(255, 215, 0, 0.2);
    color: var(--cor-secundaria);
    padding: 0.1em 0.4em;
    border-radius: 4px;
    font-weight: 700;
}
.hero-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 1.1rem;
    font-weight: 500;
}
.hero-benefits span {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
}

/* === BOTÃO CTA === */
.cta-button {
    display: inline-block;
    background-color: var(--cor-secundaria);
    color: var(--cor-texto); /* Ajustado para var(--cor-texto) para melhor contraste */
    padding: 16px 35px;
    border-radius: 50px;
    font-family: var(--font-destaque);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--sombra-botao);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cta-button:hover {
    background-color: var(--cor-secundaria-hover);
    color: var(--cor-texto); /* Mantido para contraste */
    transform: translateY(-4px) scale(1.03);
    box-shadow: var(--sombra-botao-hover);
}
.cta-button:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}


/* === SEÇÕES COM PADDING E ESTILO ALTERNADO === */
.section-padding {
    padding: 50px 0;
    /* Se a seção hero não tiver margin-bottom, a primeira .section-padding pode precisar de margin-top */
}
.section-padding:first-of-type { /* Adiciona margem ao primeiro .section-padding se o Hero não tiver margin-bottom */
    margin-top: 60px;
}

.colored-section {
    background-color: var(--cor-fundo-bloco-alternativo);
    padding-top: 60px;
    padding-bottom: 60px;
    border-radius: var(--border-radius-padrao);
    margin-top: 50px;
    margin-bottom: 50px;
}
.section-title-centered {
    font-family: var(--font-destaque);
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    color: var(--cor-primaria);
    margin-bottom: 40px;
    font-weight: 800;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: -0.5px;
}
.section-title-centered span {
    font-size: 2.5rem;
    margin-right: 10px;
    vertical-align: middle;
}
.section-title-centered::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--cor-secundaria);
    border-radius: 3px;
}
.section-paragraph {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--cor-texto-leve);
    max-width: 700px;
    margin: 30px auto 0;
    text-align: center;
}

/* Grid de Benefícios, Categorias e Tipos de Vendedor */
.benefits-grid, .categories-grid, .seller-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.benefit-item, .category-item, .seller-type-item {
    background-color: var(--cor-fundo-bloco);
    padding: 30px 25px;
    border-radius: var(--border-radius-padrao);
    text-align: center;
    box-shadow: var(--sombra-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-item:hover, .category-item:hover, .seller-type-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(100, 120, 150, 0.12);
}
.benefit-icon, .category-icon, .seller-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--cor-primaria);
    display: inline-block;
}
.benefit-item h3, .category-item h3, .seller-type-item h4 {
    font-family: var(--font-destaque);
    font-size: 1.4rem;
    color: var(--cor-texto);
    margin-bottom: 10px;
    font-weight: 700;
}
.benefit-item p, .category-item p, .seller-type-item p {
    font-size: 1rem;
    color: var(--cor-texto-leve);
    line-height: 1.6;
}

/* Lista de Vantagens */
.advantages-list {
    list-style: none;
    padding-left: 0;
    max-width: 700px;
    margin: 0 auto 30px;
}
.advantages-list li {
    font-size: 1.1rem;
    padding: 12px 15px 12px 40px;
    position: relative;
    margin-bottom: 8px;
    background-color: var(--cor-fundo-bloco);
    border-radius: 8px;
    border-left: 4px solid var(--cor-primaria);
    box-shadow: var(--sombra-suave);
    color: var(--cor-texto);
}
.advantages-list li::before {
    content: '✨'; 
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: var(--cor-primaria);
}
.advantages-list li:not(:first-child)::before { 
    content: '📌';
}
.highlight-box-vendedor {
    background: linear-gradient(45deg, var(--cor-secundaria), #ffe033);
    color: var(--cor-texto);
    padding: 20px 25px;
    border-radius: var(--border-radius-padrao);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    max-width: 700px;
    margin: 30px auto 0;
    box-shadow: 0 5px 15px rgba(255,215,0,0.2);
}

/* Como Começar a Vender */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px 30px;
    margin-top: 30px;
}
.step-item {
    background-color: var(--cor-fundo-bloco);
    padding: 35px 30px;
    border-radius: var(--border-radius-padrao);
    text-align: center;
    position: relative;
    box-shadow: var(--sombra-card);
    border-top: 4px solid var(--cor-secundaria);
}
.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--cor-primaria);
    color: var(--cor-texto-claro);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-destaque);
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(5, 151, 226, 0.35);
    border: 2px solid var(--cor-fundo-bloco);
}
.step-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
    margin-top: 25px;
    color: var(--cor-primaria);
}
.step-item h3 {
    font-family: var(--font-destaque);
    font-size: 1.35rem;
    color: var(--cor-texto);
    margin-bottom: 12px;
    font-weight: 700;
}
.step-item p {
    font-size: 1rem;
    color: var(--cor-texto-leve);
}

/* Chamada Final */
.final-call-vendedor {
    text-align: center;
    padding-top: 50px;
}
.final-call-vendedor h2 {
    font-family: var(--font-destaque);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--cor-texto);
    margin-bottom: 20px;
    font-weight: 800;
}
.final-call-vendedor h2 .highlight {
    color: var(--cor-primaria);
}
.final-call-vendedor p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--cor-texto-leve);
}
.final-cta-btn {
    margin-bottom: 25px;
}
.tagline {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cor-primaria);
}

/* === SEÇÃO DE CONEXÃO SOCIAL (VENDEDORES) === */
.social-connect-vendedor {
    margin-top: 60px;
    padding: 40px 20px; 
    text-align: center;
    background-color: var(--cor-fundo-bloco); 
    border-radius: var(--border-radius-padrao);
    box-shadow: var(--sombra-card);
}
.social-connect-title {
    font-family: var(--font-destaque);
    font-size: 1.8rem;
    color: var(--cor-texto);
    margin-bottom: 30px; 
    font-weight: 700;
}
.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 35px; 
    flex-wrap: wrap;
}
.social-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--cor-texto-leve); 
    transition: color 0.25s ease, transform 0.25s ease;
}
.social-icon-link svg {
    width: 36px; 
    height: 36px;
    stroke: currentColor; 
    margin-bottom: 10px; 
}
.social-icon-link span {
    font-size: 0.95rem; 
    font-weight: 500;
}
.social-icon-link:hover {
    color: var(--cor-primaria);
    transform: translateY(-4px); 
    text-decoration: none;
}
.social-icon-link.whatsapp-link:hover {
    color: var(--cor-sucesso);
}

/* === RESPONSIVIDADE === */
@media (max-width: 992px) {}
@media (max-width: 768px) {
    body { font-size: 1rem; }
    /* .logo-text-header { font-size: 1.8rem; } */ /* Removido pois header está display:none */
    .hero-vendedor h1 { font-size: clamp(2.4rem, 5.5vw, 3.5rem); }
    .hero-vendedor h2 { font-size: clamp(1.3rem, 2.8vw, 1.8rem); }
    .section-padding, .colored-section { padding: 40px 0; margin-top: 40px; margin-bottom: 40px; }
    .colored-section { padding-top: 50px; padding-bottom: 50px; }
    .section-title-centered { font-size: clamp(1.8rem, 4vw, 2.4rem); }
    .section-title-centered span { font-size: 2.2rem; }
    .steps-container { grid-template-columns: 1fr; gap: 30px; }
    .social-connect-vendedor { padding: 30px 15px; }
    .social-icons-container { gap: 25px; }
    .social-icon-link svg { width: 32px; height: 32px; }
}

@media (max-width: 480px) {
    .hero-vendedor { padding: 50px 15px 40px; border-radius: 0 0 20px 20px; }
    .hero-vendedor h1 { font-size: clamp(2.2rem, 7vw, 3rem); }
    .hero-vendedor h2 { font-size: clamp(1.2rem, 3.5vw, 1.6rem); }
    .hero-benefits { font-size: 1rem; }
    .cta-button { font-size: 1.1rem; padding: 14px 30px; }
    .section-padding, .colored-section, .final-call-vendedor { padding-left: 15px; padding-right: 15px; }
    .benefit-item, .category-item, .seller-type-item, .step-item { padding: 25px 20px; }
    .benefit-icon, .category-icon, .seller-icon, .step-icon { font-size: 2.5rem; }
    .benefit-item h3, .category-item h3, .seller-type-item h4, .step-item h3 { font-size: 1.3rem; }
    .social-connect-title { font-size: 1.6rem; }
    .social-icon-link svg { width: 30px; height: 30px; }
    .social-icon-link span { font-size: 0.85rem; }
}/* End custom CSS */