/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/


/* =================================
   CLASES CSS PARA BRICKS BUILDER
   Color principal: #12A77A
   ================================= */

/* Contenedor principal */
.lemabot-container {
    width: 100%;
    text-align: center;
    position: relative;
    margin: 0 auto;
    padding: 20px;
}

/* Sección de perfil */
.lemabot-profile {
    margin-bottom: 40px;
    position: relative;
}

/* Avatar */
.lemabot-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #12A77A, #0f8c64);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: 0 20px 40px rgba(18, 167, 122, 0.2);
    transition: all 0.3s ease;
    animation: lemabot-glow 3s ease-in-out infinite alternate;
}

.lemabot-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(18, 167, 122, 0.4);
}

/* Título principal */
.lemabot-title {
    font-size: 32px !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
    background: linear-gradient(135deg, #12A77A, #ffffff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.2 !important;
}

/* Subtítulo */
.lemabot-subtitle {
    font-size: 18px !important;
    color: #a0a0a0 !important;
    margin-bottom: 5px !important;
    font-weight: 400 !important;
}

/* Contenedor de enlaces */
.lemabot-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Botón base */
.lemabot-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 18px 24px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(18, 167, 122, 0.2) !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.lemabot-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(18, 167, 122, 0.1), transparent);
    transition: left 0.5s ease;
}

.lemabot-btn:hover::before {
    left: 100%;
}

.lemabot-btn:hover {
    border-color: #12A77A !important;
    background: rgba(18, 167, 122, 0.1) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(18, 167, 122, 0.2);
    color: #ffffff !important;
}

/* Botón demo destacado */
.lemabot-btn-demo {
    background: linear-gradient(135deg, #12A77A, #0f8c64) !important;
    border: none !important;
    color: #000000 !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 32px rgba(18, 167, 122, 0.3);
}

.lemabot-btn-demo:hover {
    background: linear-gradient(135deg, #16c28a, #12A77A) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(18, 167, 122, 0.4);
    color: #000000 !important;
}

/* Emojis en botones */
.lemabot-emoji {
    font-size: 24px;
    margin-right: 12px;
    display: inline-block;
}

/* Footer */
.lemabot-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666 !important;
    font-size: 14px !important;
}

/* Elementos flotantes decorativos */
.lemabot-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.lemabot-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #12A77A;
    border-radius: 50%;
    opacity: 0.6;
    animation: lemabot-float 6s ease-in-out infinite;
}

.lemabot-dot:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.lemabot-dot:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.lemabot-dot:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

/* Fondo con efecto radial */
.lemabot-bg-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(18, 167, 122, 0.05) 0%, transparent 70%);
    animation: lemabot-rotate 20s linear infinite;
    z-index: -2;
}

/* ANIMACIONES */
@keyframes lemabot-glow {
    0% { box-shadow: 0 20px 40px rgba(18, 167, 122, 0.2); }
    100% { box-shadow: 0 25px 50px rgba(18, 167, 122, 0.4); }
}

@keyframes lemabot-float {
    0%, 100% { transform: translateY(0px); opacity: 0.6; }
    50% { transform: translateY(-20px); opacity: 1; }
}

@keyframes lemabot-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .lemabot-container {
        padding: 16px;
    }
    
    .lemabot-title {
        font-size: 28px !important;
    }
    
    .lemabot-subtitle {
        font-size: 16px !important;
    }
    
    .lemabot-btn {
        padding: 16px 20px !important;
        font-size: 15px !important;
    }
    
    .lemabot-avatar {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
}

//* ESTO SIRVE PARA QUITAR EL INPUT DEL SELECT Y QUITAR EL FILTRO*//

.am-select.is-filterable .el-select__input {
    pointer-events: none !important;
    caret-color: transparent !important;
}

.am-select .el-select__wrapper {
    pointer-events: auto !important;
}

span.am-fcil__filter-buttons {
    display: none !important;
}