/* ===============================================
   SKILLBOOST - CSS PERSONALIZADO
   =============================================== */

/* COLORES PRINCIPALES */
:root {
    --color-rosa: #FF6B9D;
    --color-morado: #C239B3;
    --color-verde: #00D9A5;
    --color-oscuro: #1A1A2E;
    --color-gris-claro: #F8F9FA;
    --color-gris-medio: #E9ECEF;
}

/* FUENTES */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* GRADIENTES */
.gradient-rosa-morado {
    background: linear-gradient(34deg, var(--color-rosa) 0%, var(--color-morado) 100%);
}

.gradient-gris {
    background: linear-gradient(180deg, var(--color-gris-claro) 0%, var(--color-gris-medio) 100%);
}

/* BOTONES */
.elementor-button {
    font-weight: 600 !important;
    padding: 15px 40px !important;
    transition: all 0.3s ease !important;
}

.elementor-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ANIMACIONES HOVER - IMÁGENES */
.elementor-widget-image img {
    transition: transform 0.3s ease;
}

.elementor-widget-image:hover img {
    transform: scale(1.05);
}

/* ANIMACIONES HOVER - CARDS DE CURSOS */
.elementor-element[data-id*="caad95"],
.elementor-element[data-id*="206b20"],
.elementor-element[data-id*="7cf53c"] {
    transition: all 0.3s ease;
}

.elementor-element[data-id*="caad95"]:hover,
.elementor-element[data-id*="206b20"]:hover,
.elementor-element[data-id*="7cf53c"]:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

/* SOMBRAS SUAVES */
.box-shadow-suave {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ICONOS DE CARACTERÍSTICAS */
.elementor-widget-image[data-id*="f523cbb"] img,
.elementor-widget-image[data-id*="4ea818a"] img,
.elementor-widget-image[data-id*="b5618cb"] img {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* LOGOS - ESCALA DE GRISES CON HOVER */
.elementor-element[data-id*="logo"] img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.elementor-element[data-id*="logo"]:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* CONTADOR ANIMADO */
.elementor-counter-number-wrapper {
    font-weight: 700;
    color: var(--color-verde);
}

/* BOTONES DE CURSOS */
.elementor-button-link {
    color: var(--color-rosa) !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.elementor-button-link:hover {
    color: var(--color-morado) !important;
    padding-left: 10px;
}

/* LISTA DE CHECKS */
.elementor-icon-list-icon {
    color: var(--color-verde) !important;
}

.elementor-icon-list-text {
    color: var(--color-oscuro);
    font-weight: 500;
}

/* SPACING RESPONSIVE */
@media (max-width: 768px) {
    .elementor-container {
        padding: 20px !important;
    }
    
    h1, h2 {
        font-size: 32px !important;
    }
    
    h3 {
        font-size: 24px !important;
    }
}

/* HEADER TRANSPARENTE (si usas Elementor Pro) */
.elementor-location-header {
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 999;
}

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

/* TRANSICIONES GENERALES */
* {
    transition: all 0.3s ease;
}

/* EFECTOS DE PARALLAX SUAVE */
.elementor-section {
    background-attachment: scroll;
}

@media (min-width: 1024px) {
    .elementor-section[data-settings*="background_motion"] {
        background-attachment: fixed;
    }
}

/* PRECIOS EN VERDE */
.elementor-widget-heading[data-id*="840c681"] h4,
.elementor-widget-heading[data-id*="ed1a387"] h4,
.elementor-widget-heading[data-id*="d95a54a"] h4 {
    color: var(--color-verde) !important;
}

/* NÚMEROS DE CURSO EN ROSA */
.elementor-widget-heading[data-id*="f3b6221"] h3,
.elementor-widget-heading[data-id*="09c07df"] h3,
.elementor-widget-heading[data-id*="171a547"] h3 {
    color: var(--color-rosa) !important;
}

/* BORDES REDONDEADOS */
.border-radius-15 {
    border-radius: 15px !important;
    overflow: hidden;
}

/* ESPACIADO ENTRE ELEMENTOS */
.elementor-widget:not(:last-child) {
    margin-bottom: 20px;
}

/* FONDOS CON OVERLAY */
.elementor-background-overlay {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

/* TEXTO CON SOMBRA */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* ANIMACIÓN DE ENTRADA */
.elementor-invisible {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LÍNEA DECORATIVA */
.decorative-line::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-verde);
    margin: 20px auto;
}

/* HOVER EN ICONOS SOCIALES */
.elementor-social-icon {
    transition: all 0.3s ease !important;
}

.elementor-social-icon:hover {
    transform: translateY(-5px) !important;
}
