.elementor-1682 .elementor-element.elementor-element-c80a3fc{--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;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS *//* =========================================
   PEGAR ESTO EN: AJUSTES DE PÁGINA > CSS PERSONALIZADO
   ========================================= */

/* 1. FUENTES */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

/* 2. VARIABLES DE COLOR (Paleta Pastel Lujo) */
:root {
    --s-primary: #a855f7;   /* Violeta */
    --s-secondary: #ec4899; /* Rosa */
    --s-dark: #111827;      /* Texto Oscuro */
    --s-light: #4b5563;     /* Texto Suave */
    --s-bg: #FFFFFF;
}

/* 3. RESET PARA EL CONTENEDOR PRINCIPAL */
#sauco-master {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    background-color: var(--s-bg);
    color: var(--s-dark);
    line-height: 1.6;
}

/* Forzar tipografía en todos los elementos hijos */
#sauco-master h1, #sauco-master h2, #sauco-master h3, 
#sauco-master p, #sauco-master a, #sauco-master button, 
#sauco-master span:not(.material-symbols-outlined) {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* 4. COMPONENTES */

/* Iconos */
#sauco-master .material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

/* Botones Premium (Sin errores visuales) */
.s-btn {
    background-color: var(--s-dark) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 32px !important;
    border-radius: 99px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 11px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
}

.s-btn:hover {
    transform: translateY(-2px);
    background-color: var(--s-primary) !important;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4) !important;
    color: white !important;
}

.s-btn-outline {
    background-color: transparent !important;
    color: var(--s-dark) !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: none !important;
}

.s-btn-outline:hover {
    background-color: #f9fafb !important;
    border-color: var(--s-dark) !important;
}

/* Tarjetas Glass */
.s-card {
    background: white;
    border-radius: 2rem;
    border: 1px solid #f3f4f6;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.s-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(168, 85, 247, 0.1);
    border-color: #f3e8ff;
}

/* Carrusel Manual (Sin auto-scroll molesto) */
.s-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}
.s-carousel::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.s-slide {
    flex: 0 0 300px;
    scroll-snap-align: center;
    min-width: 280px;
}

/* Fondo Dinámico */
.s-aura {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    top: -10%; left: -10%;
    pointer-events: none;
    z-index: 0;
}

/* 5. UTILIDADES */
.s-text-gradient {
    background: linear-gradient(to right, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .s-slide { flex: 0 0 85%; }
    #sauco-master h1 { font-size: 2.5rem !important; }
}/* End custom CSS */