.elementor-2 .elementor-element.elementor-element-c283da4{--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;}.elementor-2 .elementor-element.elementor-element-d47e0ca{--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;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2 .elementor-element.elementor-element-cdd4fc8 img{width:7%;}.elementor-2 .elementor-element.elementor-element-5e3fc4b{margin:-29px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}body.elementor-page-2:not(.elementor-motion-effects-element-type-background), body.elementor-page-2 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}/* Start custom CSS for html, class: .elementor-element-029d676 */@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Rubik:wght@700;900&display=swap');

.lt-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent;
    padding: 20px 0;
}

.lt-container {
    width: 100%;
    max-width: 450px;
    text-align: center;
}

/* AVATAR 100% CIRCULAR */
.lt-avatar-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%; /* Garante o círculo */
    border: 3px solid #FDB513;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Corta sobras da imagem */
    box-shadow: 0 0 15px rgba(230, 165, 14, 0.3);
}

.lt-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%; /* Força a imagem a ser circular */
    object-fit: cover; /* Não deixa a foto esticar */
}

.lt-name {
    font-family: 'Rubik', sans-serif;
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 8px !important;
}

.lt-bio {
    font-family: 'Open Sans', sans-serif;
    color: #aaaaaa;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 35px !important;
}

.lt-bio strong { color: #FDB513; }

/* DESIGN DO CARD VIDRO */
.lt-main-card {
    position: relative;
    display: block;
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    overflow: hidden;
    animation: lt-pulse 2s infinite;
}

.lt-main-card:hover {
    transform: scale(1.02);
    border-color: #FDB513;
    background: rgba(255, 255, 255, 0.09);
}

.lt-card-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.lt-card-icon {
    width: 50px;
    height: 50px;
    background: #FDB513;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-right: 15px;
}

.lt-card-info { text-align: left; flex: 1; }

.lt-card-tag {
    display: block;
    color: #FDB513;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.lt-card-title {
    display: block;
    font-family: 'Rubik', sans-serif;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.lt-card-arrow { color: rgba(255,255,255,0.3); font-size: 14px; }

/* BOTÕES ESTILO LINKTREE */
.lt-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 18px;
    color: #fff !important;
    text-decoration: none !important;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 12px;
    transition: 0.3s;
}

.lt-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.lt-btn-secondary i {
    font-size: 18px;
    color: #e6a50e;
}

/* RODAPÉ SOCIAL */
.lt-social-footer {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.lt-social-footer a {
    color: #fff;
    font-size: 24px;
    transition: 0.3s;
    opacity: 0.6;
}

.lt-social-footer a:hover {
    color: #FDB513;
    opacity: 1;
}

/* ANIMAÇÃO */
@keyframes lt-pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 165, 14, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(230, 165, 14, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 165, 14, 0); }
}

/* Container que agrupa os produtos */
.lt-products-area {
    width: 100%;
}

/* O Card do Produto Individual */
.lt-product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(253, 181, 19, 0.05); /* Fundo leve na cor primária */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(253, 181, 19, 0.2);
    border-radius: 14px;
    padding: 16px 20px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

/* Efeito ao passar o mouse */
.lt-product-item:hover {
    background: rgba(253, 181, 19, 0.12);
    border-color: #FDB513;
    transform: translateY(-2px);
}

/* Título do Produto */
.lt-prod-title {
    color: #eeeeee;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    padding-right: 10px;
}

/* Etiqueta / Botão Interno "Ver Produto" */
.lt-prod-badge {
    color: #FDB513;
    font-family: 'Rubik', sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #FDB513;
    padding: 5px 12px;
    border-radius: 8px;
    white-space: nowrap; /* Impede que o texto quebre em duas linhas */
    transition: all 0.3s ease;
}

/* Efeito no badge quando o card recebe hover */
.lt-product-item:hover .lt-prod-badge {
    background: #FDB513;
    color: #000;
}

.lt-divider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    gap: 15px;
    opacity: 0.6; /* Deixa o divisor discreto para não competir com os botões */
}

.lt-divider-line {
    flex: 1;
    height: 1px;
    /* Gradiente que desaparece nas pontas para um efeito moderno */
    background: linear-gradient(90deg, transparent, rgba(253, 181, 19, 0.5), transparent);
}

.lt-divider-text {
    font-family: 'Rubik', sans-serif;
    color: #FDB513;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Responsividade para telas muito pequenas */
@media (max-width: 380px) {
    .lt-divider-text {
        font-size: 8px;
        letter-spacing: 1.5px;
    }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 380px) {
    .lt-prod-title { font-size: 13px; }
    .lt-prod-badge { font-size: 9px; padding: 4px 8px; }
}

/* AJUSTE MOBILE */
@media (max-width: 480px) {
    .lt-avatar-container { width: 110px; height: 110px; }
    .lt-name { font-size: 22px; }
    .lt-card-title { font-size: 16px; }
}/* End custom CSS */