.elementor-111 .elementor-element.elementor-element-9bdb110{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-04debb1 *//* VARIABLES Y FUENTES */
@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@700&family=Poppins:wght@300;400;700&display=swap');

:root {
    --naranja: #EB9926;
    --negro: #000000;
    --magenta: #BB1BA7;
    --azul: #337CAD;
    --glass: rgba(255, 255, 255, 0.05);
}

/* EXTENDER A PANTALLA COMPLETA */
.st-full-wrap {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    font-family: 'Poppins', sans-serif;
    background-color: var(--negro);
    color: white;
    overflow-x: hidden;
}

/* HERO ARTÍSTICO */
.st-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(45deg, rgba(187, 27, 167, 0.4), rgba(51, 124, 173, 0.4)),
        url('https://images.unsplash.com/photo-1558304970-abd589baebe5?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.st-hero h1 {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2rem, 8vw, 6rem);
    line-height: 0.85;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.st-hero h1 span {
    display: block;
    background: linear-gradient(90deg, var(--naranja), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SECCIONES */
.st-section { padding: 100px 10%; position: relative; }

/* TARJETAS ARTÍSTICAS (GLASSMORPHISM) */
.st-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.st-glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 30px;
    transition: 0.5s all ease;
}

.st-glass-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--naranja);
    transform: translateY(-10px);
}

/* IMÁGENES DE PRODUCTOS */
.st-img-box {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.st-img-box img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(40%);
    transition: 0.6s;
}

.st-img-box:hover img { filter: grayscale(0%); transform: scale(1.1); }

/* BOTONES ORIGINALES MEJORADOS */
.st-btn-group { display: flex; gap: 20px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

.st-btn {
    padding: 20px 45px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.st-btn-primary { background: var(--magenta); color: white; border: 2px solid var(--magenta); }
.st-btn-secondary { border: 2px solid var(--azul); color: white; }
.st-btn:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(187, 27, 167, 0.4); }

/* PASOS DEL PROCESO */
.st-step-circle {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--naranja);
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 1.5rem; margin-bottom: 20px;
}

/* FOOTER */
.st-footer { background: #050505; padding: 80px 10% 40px; border-top: 1px solid #222; }

@media (max-width: 768px) {
    .st-section { padding: 60px 5%; }
}/* End custom CSS */