/* Sysnesis Hero Section - Combined Animations */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&family=Syne:wght@400;500;600&display=swap');

.sysnesis-hero-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    min-height: 600px;
    overflow: visible;
    background: #ffffff;
}

/* Contenedor de la forma 3D - Derecha */
#sysnesis-3d-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 600px;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

#sysnesis-3d-canvas {
    width: 100%;
    height: 100%;
}

/* Contenedor del texto - Izquierda */
.sysnesis-text-container {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 10;
    width: 400px;
    max-width: 400px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Fondo blur detrás del texto - SOLO ESTA REGLA */
.sysnesis-text-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 40%,
        rgba(255, 255, 255, 0.50) 70%,
        rgba(255, 255, 255, 0) 100%);
    filter: blur(3px);
    z-index: -1;
}

.sysnesis-logo {
    margin-bottom: 10px;
    animation: fadeInFromLeft 1.2s ease-out;
}

.sysnesis-logo img {
    max-width: 200px;
    height: auto;
}

@keyframes fadeInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sysnesis-typing {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    color: #2fd4cb;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    min-height: 12px;
}


.sysnesis-description {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    text-align: left;
}

.sysnesis-description strong {
    font-weight: 600;
    color: #000;
}

.typing-cursor {
    border-right: 3px solid currentColor;
    padding-left: 2px;
}

/* Responsive */
@media (max-width: 1200px) {
    .sysnesis-text-container {
        left: 5%;
        max-width: 336px;
    }

    #sysnesis-3d-container {
        width: 55%;
    }

    .sysnesis-typing {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .sysnesis-hero-wrapper {
        height: auto;
        min-height: 600px;
    }

    .sysnesis-text-container {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        padding: 60px 20px;
        text-align: center;
    }

    /* ESTE ES EL MISMO .sysnesis-text-container::before, SOLO LO MODIFICA */
    .sysnesis-text-container::before {
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.90) 40%,
            rgba(255, 255, 255, 0.70) 80%,
            rgba(255, 255, 255, 0.40) 100%);
        filter: blur(4px);
    }

    #sysnesis-3d-container {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.3;
    }

    .sysnesis-typing {
        font-size: 28px;
    }


    .sysnesis-description {
        font-size: 14px;
        text-align: center;
    }

    .sysnesis-logo img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .sysnesis-typing {
        font-size: 24px;
    }

}