.elementor-651 .elementor-element.elementor-element-2020998{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}/* Start custom CSS for html, class: .elementor-element-c92fbf7 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-y: scroll;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(45deg,
            #2a0b56 0%,
            #2a0b56 25%,
            #2a0b56 50%,
            #706fd3 75%,
            #8c82fc 100%);
    background-size: 300% 300%;
    background-attachment: fixed;
    animation: gradientMove 20s ease infinite;
    color: #e0e0e0;
    position: relative;
    overflow-x: hidden;
}

/* Animaciones */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-30px) translateX(-50%);
    }
    60% {
        transform: translateY(-15px) translateX(-50%);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 100;
    width: 100%;
}

.navbar img {
    height: 40px;
}

/* Welcome Section */
.welcome-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 4rem 2rem;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.welcome-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(45deg, #fff, #8c82fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    text-shadow: 0 0 20px rgba(140, 130, 252, 0.3);
    max-width: 1200px;
    width: 100%;
    line-height: 1.2;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    position: relative;
    left: 0;
    right: 0;
}

.welcome-text {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    max-width: min(800px, 90%);
    line-height: 1.6;
    color: #e0e0e0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
    margin: 0 auto;
}

.parallax-content {
    transform: translateZ(-10px) scale(1.5);
    transition: all 0.5s ease;
    width: 100%;
    padding: 0 clamp(1rem, 5vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Container principal */
.container {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 1rem 6rem;
    margin: 0 auto;
    max-width: 1400px;
    gap: clamp(1rem, 3vw, 2rem);
    position: relative;
    width: 100%;
}

/* Cards */
.card-hover {
    width: 100%;
    max-width: 320px;
    min-width: 280px;
    height: 400px;
    transition: all 0.5s ease;
    transform: scale(1);
    filter: grayscale(100%);
    opacity: 0.7;
}

.card-hover:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    z-index: 10;
}

.card-hover:hover .card-border {
    border-color: white;
}

/* Card Components */
.card-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 1.5rem;
    transition: border-color 0.3s ease;
    pointer-events: none;
}

.card-content,
.btn-1 {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.card-hover:hover .card-content,
.card-hover:hover .btn-1 {
    opacity: 1;
    transform: translateY(0);
}

/* Botones y efectos */
.btn-1 {
    scale: 0.7;
    display: block;
    cursor: pointer;
    color: white;
    margin: 0 auto;
    width: 240px;
    position: relative;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    overflow: hidden;
    padding: 3px;
    isolation: isolate;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.btn-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 400%;
    height: 100%;
    opacity: 0;
    background: linear-gradient(115deg,
            #D4D4D4,
            #C0C0C0,
            #B8B8B8,
            #D8D8D8,
            #E0E0E0);
    background-size: 25% 100%;
    animation: animate-border 0.75s linear infinite;
    animation-play-state: paused;
    transform: translateX(-5%);
    transition: transform 0.25s ease-out, opacity 0.175s ease-out;
}

.btn-1:hover::before {
    opacity: 1;
    animation-play-state: running;
    transition-duration: 0.75s;
    transform: translateX(0%);
}

@keyframes animate-border {
    to {
        transform: translateX(-25%);
    }
}

.btn-1 span {
    position: relative;
    display: block;
    padding: 1rem 1.5rem;
    font-size: 18px;
    border-radius: 30px;
    background: #000;
    color: #fff;
    text-align: center;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 100;
    width: 100%;
}

.home-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #2a0b56, #706fd3);
    border-radius: 50%;
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.home-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.home-button svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s, bounce 2s infinite;
}

/* Media Queries */
@media (max-width: 480px) {
    .welcome-section {
        padding: 6rem 1rem 4rem;
    }
    
    .welcome-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .welcome-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .container {
        padding: 2rem 0.5rem 5rem;
    }

    .card-hover {
        max-width: 100%;
        height: 350px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .welcome-section {
        padding: 7rem 1.5rem 4rem;
    }

    .container {
        padding: 2rem 1rem 5rem;
    }

    .card-hover {
        max-width: 90%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .welcome-section {
        padding: 8rem 2rem 4rem;
    }

    .container {
        padding: 2rem 2rem 6rem;
    }
    
    .card-hover {
        max-width: 45%;
    }
}

@media (min-width: 1025px) {
    .welcome-section {
        padding: 8rem 3rem 4rem;
    }

    .container {
        padding: 2rem 3rem 6rem;
    }
    
    .card-hover {
        max-width: 300px;
    }
}/* End custom CSS */