/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #000000;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flexbox;
    align-items: center;
    justify-content: center;
}

/* Contenedor principal */
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 1200px;
}

/* Contenido de construcción */
.construction-content {
    text-align: center;
    color: white;
}

/* Contenedor de imagen */
.image-container {
    margin-bottom: 40px;
}

/* Imagen de construcción */
.construction-image {
    max-width: 1200px;
    width: 100%;
    height: auto;
    display: grid;
    margin: 0 auto;
    border-radius: 8px;
}

/* Contenedor del botón */
.button-container {
    margin-top: 30px;
}

/* Icono SVG de sesión */
.icono-sesion {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    /* animation: iconoFlotante 2s ease-in-out infinite; */
    padding-top: 7px;
}

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


/* Botón de sesión integrado */
.btn-sesion-integrado {
    font-size: 0.8em;
    color: #00964d;
    margin: 0;
    padding: 0;
    font-weight: normal;
    text-decoration: none;
    border: none;
    background: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Efecto de pulso adicional */
.btn-movimiento::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00964d, #00964d, #00964d);
    border-radius: 8px;
    z-index: -1;
    animation: pulsoBorde 2s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes pulsoBorde {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}



/* Responsive */
@media (max-width: 768px) {
    .construction-content {
        padding: 20px 15px;
    }
    
    .construction-image {
        max-width: 400px;
    }
    
    .btn-sesion-integrado {
        padding: 12px 25px;
        font-size: 0.7rem;
    }
    
    .icono-persona {
        width: 20px;
        height: 20px;
    }
    
    @keyframes movimientoConstante {
        0% {
            transform: translateY(0) scale(1);
        }
        50% {
            transform: translateY(-5px) scale(1.03);
        }
        100% {
            transform: translateY(0) scale(1);
        }
    }
}

@media (max-width: 480px) {
    .construction-image {
        max-width: 300px;
    }
    
    .btn-sesion-integrado {
        padding: 10px 20px;
        font-size: 0.5rem;
        gap: 8px;
    }
    
    .image-container {
        margin-bottom: 30px;
    }
    .icono-sesion {
        width: 12px;
        height: 12px;
    }
}

