body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background-color: #f0f0f0;
    overflow: hidden;
}

.container {
    display: flex;
    width: auto;
    height: auto;
}

.right-side {
    width: 100%;
    background: url('images1/Textura digital.png') no-repeat center center;
    background-size: cover;
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrado vertical */
    align-items: center; /* Centrado horizontal */
    text-align: center; /* Centrado del texto */
}

.center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1); /* Estado inicial con escala 1 */
    width: 25vw;
    height: auto;
    opacity: 0;
    animation: fadeInZoom 2s ease-out forwards;
    transition: transform 0.3s ease; /* Transición suave para transformaciones */
}

.center-image:hover {
    transform: translate(-50%, -50%) scale(1.1); /* Aumenta el tamaño en hover */
}

.header, .footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
    text-align: center;
    position: absolute; /* Posiciona el encabezado y el pie de página en relación con el contenedor derecho */
}

.header {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
    text-align: center;
    position: relative; /* Posiciona el encabezado y el pie de página en relación con el contenedor derecho */
}

.footer {
    bottom: 0; /* Posiciona el pie de página en la parte inferior */
}

@keyframes fadeInZoom {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(10%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1; /* Opacidad de partículas */
    background-color: #000000;
}

.right-side::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 30%, transparent 70%);
    opacity: 0.5;
    transform: rotate(30deg);
    animation: rotateBackground 15s linear infinite;
}

@keyframes rotateBackground {
    from {
        transform: rotate(30deg);
    }
    to {
        transform: rotate(390deg);
    }
}

.right-side h1 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.right-side h1:hover {
    color: #3498db; /* Color elegante en hover */
    transform: scale(1.05);
}

.main-button {
    padding: 1.2vw 2.5vw;
    background-color: #3498db; /* Color del botón elegante */
    color: #ecf0f1;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 20px; /* Espacio entre el h1 y el botón */
}

.main-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: 1;
}

.main-button:hover::before {
    opacity: 1;
}

.main-button:hover {
    background-color: #2980b9; /* Color del botón en hover */
    transform: translateY(-4px);
    color: #ecf0f1;
}

.video-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    height: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.3;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.video-container:hover {
    opacity: 1;
    transform: scale(1.05);
}

.video-container video {
    width: 100%;
    height: 100%;
}

.video-tab {
    position: fixed;
    top: 50%;
    right: 0;
    width: 60px;
    height: 60px;
    background: #3498db; /* Color de la pestaña */
    color: #fff;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    bo
